BPackageInfo::Parser: Fix error output
The "=" operator isn't actually allowed in a resolvable expression. It has to be "==" instead.
This commit is contained in:
@@ -744,8 +744,8 @@ BPackageInfo::Parser::_ParseResolvableExprList(
|
|||||||
parser._RewindTo(op);
|
parser._RewindTo(op);
|
||||||
} else {
|
} else {
|
||||||
throw ParseError(
|
throw ParseError(
|
||||||
"expected '<', '<=', '=', '==', '!=', '>=', '>', comma or "
|
"expected '<', '<=', '==', '!=', '>=', '>', comma or '}'",
|
||||||
"'}'", op.pos);
|
op.pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
BPackageResolvableOperator resolvableOperator
|
BPackageResolvableOperator resolvableOperator
|
||||||
|
|||||||
Reference in New Issue
Block a user