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:
parent
98a0dd5fd8
commit
0c661892d4
@ -744,8 +744,8 @@ BPackageInfo::Parser::_ParseResolvableExprList(
|
||||
parser._RewindTo(op);
|
||||
} else {
|
||||
throw ParseError(
|
||||
"expected '<', '<=', '=', '==', '!=', '>=', '>', comma or "
|
||||
"'}'", op.pos);
|
||||
"expected '<', '<=', '==', '!=', '>=', '>', comma or '}'",
|
||||
op.pos);
|
||||
}
|
||||
|
||||
BPackageResolvableOperator resolvableOperator
|
||||
|
Loading…
Reference in New Issue
Block a user