RESOLVED FIXED 150996
Node.h:392:12: warning: 'this' pointer cannot be null in well-defined C++ code
https://bugs.webkit.org/show_bug.cgi?id=150996
Summary Node.h:392:12: warning: 'this' pointer cannot be null in well-defined C++ code
Michael Catanzaro
Reported 2015-11-07 07:13:14 PST
WebCore::Node::document begins with the line ASSERT(this), which is bogus. In Clang 3.7, this triggers a compiler warning for every file that includes Node.h: ../../Source/WebCore/dom/Node.h:392:12: warning: 'this' pointer cannot be null in well-defined C++ code; pointer may be assumed to always convert to true [-Wundefined-bool-conversion] (!(this) ? (WTFReportAssertionFailure("../../Source/WebCore/dom/Node.h", 392, __PRETTY_FUNCTION__, "this"), WTFCrash()) : (void)0); ~ ^~~~ 1 warning generated. Pretty sure GCC and Clang both optimize away this assertion, but I guess the warning is new. The fix is just to remove the assertion.
Attachments
Patch (1.20 KB, patch)
2015-11-07 07:29 PST, Michael Catanzaro
kling: review+
Michael Catanzaro
Comment 1 2015-11-07 07:29:54 PST
Michael Catanzaro
Comment 2 2015-11-07 09:17:44 PST
Note You need to log in before you can comment on or make changes to this bug.