mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Fix warnings about missing parents between || and &&.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119454 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
113a06cff4
commit
32df92dde6
@ -198,16 +198,16 @@ public:
|
||||
assert((HL > HR ? HL-HR : HR-HL) <= 2
|
||||
&& "Balancing invariant violated");
|
||||
|
||||
assert(!getLeft()
|
||||
|| ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()),
|
||||
ImutInfo::KeyOfValue(getValue()))
|
||||
&& "Value in left child is not less that current value");
|
||||
assert((!getLeft() ||
|
||||
ImutInfo::isLess(ImutInfo::KeyOfValue(getLeft()->getValue()),
|
||||
ImutInfo::KeyOfValue(getValue()))) &&
|
||||
"Value in left child is not less that current value");
|
||||
|
||||
|
||||
assert(!getRight()
|
||||
|| ImutInfo::isLess(ImutInfo::KeyOfValue(getValue()),
|
||||
ImutInfo::KeyOfValue(getRight()->getValue()))
|
||||
&& "Current value is not less that value of right child");
|
||||
assert(!(getRight() ||
|
||||
ImutInfo::isLess(ImutInfo::KeyOfValue(getValue()),
|
||||
ImutInfo::KeyOfValue(getRight()->getValue()))) &&
|
||||
"Current value is not less that value of right child");
|
||||
|
||||
return getHeight();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user