Changeset 129977 in webkit
- Timestamp:
- Sep 29, 2012, 7:40:24 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r129975 r129977 1 2012-09-29 Byungwoo Lee <bw80.lee@samsung.com> 2 3 Fix build warning : -Wparentheses. 4 https://bugs.webkit.org/show_bug.cgi?id=97961 5 6 Reviewed by Kentaro Hara. 7 8 Explicit braces are added around the && statement to fix -Wparentheses warning. 9 10 * mathml/MathMLElement.h: 11 (WebCore::toMathMLElement): 12 1 13 2012-09-29 Kenneth Rohde Christiansen <kenneth@webkit.org> 2 14 -
trunk/Source/WebCore/mathml/MathMLElement.h
r129695 r129977 55 55 inline MathMLElement* toMathMLElement(Node* node) 56 56 { 57 ASSERT(!node || node->isElementNode() && static_cast<Element*>(node)->isMathMLElement());57 ASSERT(!node || (node->isElementNode() && static_cast<Element*>(node)->isMathMLElement())); 58 58 return static_cast<MathMLElement*>(node); 59 59 }
Note:
See TracChangeset
for help on using the changeset viewer.