fix warning related to && and || and parens
git-svn-id: http://skia.googlecode.com/svn/trunk@9597 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
a25c94e50a
commit
732c5d516a
@ -783,7 +783,7 @@ void SkView::validate() const {
|
||||
} else {
|
||||
bool nextNull = NULL == fNextSibling;
|
||||
bool prevNull = NULL == fNextSibling;
|
||||
SkASSERT(nextNull && prevNull || !nextNull && !prevNull);
|
||||
SkASSERT(nextNull == prevNull);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user