[-Wcalled-once-parameter][NFC] Fix operator precedence warning

This commit is contained in:
Yang Fan 2021-01-06 11:49:34 +08:00
parent 6dc3c117a3
commit a032a4e799
No known key found for this signature in database
GPG Key ID: 717E4EB972E515EF
1 changed files with 2 additions and 2 deletions

View File

@ -573,8 +573,8 @@ private:
CheckConventionalParameters(CheckConventionalParameters),
CurrentState(0) {
initDataStructures();
assert(size() == 0 ||
!States.empty() && "Data structures are inconsistent");
assert((size() == 0 || !States.empty()) &&
"Data structures are inconsistent");
}
//===----------------------------------------------------------------------===//