Skip to content

Commit 77a2fd0

Browse files
authored
.
1 parent 9323577 commit 77a2fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastparse/src-3/fastparse/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ package object fastparse extends fastparse.SharedPackageDefs {
4141
/**
4242
* Used by for-comprehensions.
4343
*/
44-
inline def withFilter(f: T => Boolean)(using ctx: P[Any]): P[T] = MacroInlineImpls.filterInline[T](parse0)(f)(ctx)
44+
inline def withFilter(f: T => Boolean)(using ctx: P[Any]): P[T] = filter(f)
4545

4646
/** Either-or operator: tries to parse the left-hand-side, and if that
4747
* fails it backtracks and tries to pass the right-hand-side. Can be

0 commit comments

Comments
 (0)