From 79fe341efc4d5e7467ec08cb7d0688b17a9efb05 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 25 Jul 2022 16:27:45 +0200 Subject: Remove no longer needed field in `State::Ok` --- src/construct/html_flow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/construct/html_flow.rs') diff --git a/src/construct/html_flow.rs b/src/construct/html_flow.rs index add2308..30c14a1 100644 --- a/src/construct/html_flow.rs +++ b/src/construct/html_flow.rs @@ -930,7 +930,7 @@ fn continuation_after(tokenizer: &mut Tokenizer, _code: Code) -> State { tokenizer.interrupt = false; // No longer concrete. tokenizer.concrete = false; - State::Ok(0) + State::Ok } /// Before a line ending, expecting a blank line. -- cgit