BUILD BREAKAGE (r142064): GCC does not support assigning std::nullptr to ChildProcessProxy pointer
Created attachment 187007 [details] Patch
The patch is pretty straightforward, using 0 instead of std::nullptr. This seem to work on mac builds due to them using clang, while the failure occurs when using gcc. Given that the PST timezone is asleep at the moment (and will be for the next 8 hours or so) I'd recommend landing this ASAP just to remove the breakage and revisit this patch (possibly reverting it and fixing this another way) when the Apple folks get back online.
*** Bug 109148 has been marked as a duplicate of this bug. ***
Comment on attachment 187007 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=187007&action=review > Source/WebKit2/UIProcess/Downloads/DownloadProxyMap.cpp:76 > - m_process = nullptr; > + m_process = 0; Could it be that this file is just missing an include of <wtf/NullPtr.h>?
*** Bug 109153 has been marked as a duplicate of this bug. ***
Fixed in r142082. http://trac.webkit.org/changeset/142082