Fix compile error new in scala 2.13.9

This commit is contained in:
eikek 2022-09-24 12:49:15 +02:00
parent d126336dd5
commit c84645dd46

View File

@ -76,7 +76,7 @@ object StringUtil {
/** String content without the delimiter */ /** String content without the delimiter */
def undelimitedString(endP: P[Unit]): P[String] = def undelimitedString(endP: P[Unit]): P[String] =
escapedToken.backtrack escapedToken.backtrack
.orElse((!endP).with1 ~ P.anyChar) .orElse(((!endP).with1 ~ P.anyChar).void)
.rep .rep
.string .string
.flatMap { str => .flatMap { str =>