Title: [280820] trunk/Source/WTF
- Revision
- 280820
- Author
- [email protected]
- Date
- 2021-08-09 19:15:01 -0700 (Mon, 09 Aug 2021)
Log Message
[WTF][Win] REGRESSION(r280795) error LNK2019: unresolved external symbol "class WTF::String __cdecl WTF::logLevelString(void)"
https://bugs.webkit.org/show_bug.cgi?id=228937
<rdar://problem/81722757>
Unresolved build fix.
The previous attempt (r280819) didn't actually fix the build
error. LoggingWin.cpp has to include LogInitialization.h.
* wtf/win/LoggingWin.cpp:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (280819 => 280820)
--- trunk/Source/WTF/ChangeLog 2021-08-10 01:36:48 UTC (rev 280819)
+++ trunk/Source/WTF/ChangeLog 2021-08-10 02:15:01 UTC (rev 280820)
@@ -2,7 +2,19 @@
[WTF][Win] REGRESSION(r280795) error LNK2019: unresolved external symbol "class WTF::String __cdecl WTF::logLevelString(void)"
https://bugs.webkit.org/show_bug.cgi?id=228937
+ <rdar://problem/81722757>
+ Unresolved build fix.
+ The previous attempt (r280819) didn't actually fix the build
+ error. LoggingWin.cpp has to include LogInitialization.h.
+
+ * wtf/win/LoggingWin.cpp:
+
+2021-08-09 Fujii Hironori <[email protected]>
+
+ [WTF][Win] REGRESSION(r280795) error LNK2019: unresolved external symbol "class WTF::String __cdecl WTF::logLevelString(void)"
+ https://bugs.webkit.org/show_bug.cgi?id=228937
+
Unreviewed build fix.
> error LNK2019: unresolved external symbol "class WTF::String __cdecl WTF::logLevelString(void)" (?logLevelString@WTF@@YA?AVString@1@XZ)
Modified: trunk/Source/WTF/wtf/win/LoggingWin.cpp (280819 => 280820)
--- trunk/Source/WTF/wtf/win/LoggingWin.cpp 2021-08-10 01:36:48 UTC (rev 280819)
+++ trunk/Source/WTF/wtf/win/LoggingWin.cpp 2021-08-10 02:15:01 UTC (rev 280820)
@@ -28,6 +28,7 @@
#if !LOG_DISABLED || !RELEASE_LOG_DISABLED
+#include "LogInitialization.h"
#include <windows.h>
#include <wtf/StdLibExtras.h>
#include <wtf/text/WTFString.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes