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

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