Skip to content

Commit a2205de

Browse files
committed
fix build after rebase
1 parent 3439529 commit a2205de

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rusty_parser/src/pc_specific/whitespace.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rusty_pc::{Parser, SetContext, SurroundMode, surround};
1+
use rusty_pc::{Parser, SurroundMode, surround};
22

33
use crate::ParserError;
44
use crate::input::StringView;
@@ -63,9 +63,9 @@ where
6363

6464
pub fn demand_lead_ws_ctx<P, C>(
6565
parser: P,
66-
) -> impl Parser<StringView, C, Output = P::Output, Error = ParserError> + SetContext<C>
66+
) -> impl Parser<StringView, C, Output = P::Output, Error = ParserError>
6767
where
68-
P: Parser<StringView, C, Error = ParserError> + SetContext<C>,
68+
P: Parser<StringView, C, Error = ParserError>,
6969
C: Clone,
7070
{
7171
demand_ws().no_context().and_keep_right(parser)

0 commit comments

Comments
 (0)