[Webkit-unassigned] [Bug 146007] Remove build warnings in Tools/DumpRenderTree/TestNetscapePlugIn

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jun 19 02:15:53 PDT 2015


https://bugs.webkit.org/show_bug.cgi?id=146007

Csaba Osztrogonác <ossy at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ossy at webkit.org

--- Comment #9 from Csaba Osztrogonác <ossy at webkit.org> ---
(In reply to comment #8)
> Are there some additional dependencies that I am missing?
> I have tried linking with the WTF library but it does not resolve.

Assertions.h needs WTF_EXPORT_PRIVATE, which is defined in wtf/ExportMacros.h.
And wtf/ExportMacros.h needs OS/USE/COMPILER macros which are defined in Platform.h.

Adding these includes in exactly this order + adding WTF to include path
in cmake build system solves this issue ... But it is very ugly and
style checker will warn because of unordered includes ...

#include <wtf/Platform.h>
#include <wtf/ExportMacros.h>
#include <wtf/Assertions.h>

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150619/0441b39a/attachment.html>


More information about the webkit-unassigned mailing list