Changeset 249682 in webkit
- Timestamp:
- Sep 9, 2019, 6:28:57 PM (7 years ago)
- Location:
- trunk/Source/WebKitLegacy/win
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebKitDLL.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKitLegacy/win/ChangeLog
r249575 r249682 1 2019-09-09 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 [Win][WebKitLegacy] WebKitDLL.h(53,37): warning: 'gClassNameCount' has C-linkage specified, but returns user-defined type 'HashCountedSet<WTF::String> &' which is incompatible with C [-Wreturn-type-c-linkage] 4 https://bugs.webkit.org/show_bug.cgi?id=201601 5 6 Reviewed by Ross Kirsling. 7 8 Fixed a clang-cl warning. Names which aren't dllexport-ed don't 9 need to be in a extern "C" scope because they aren't exported to 10 other DLLs. 11 12 * WebKitDLL.h: Moved some variables and gClassNameCount() out of extern "C" scope. 13 1 14 2019-09-06 Alex Christensen <achristensen@webkit.org> 2 15 -
trunk/Source/WebKitLegacy/win/WebKitDLL.h
r213846 r249682 37 37 #include <wtf/text/WTFString.h> 38 38 39 extern ULONG gLockCount; 40 extern ULONG gClassCount; 41 extern HashCountedSet<WTF::String>& gClassNameCount(); 42 extern HINSTANCE gInstance; 43 extern CLSID gRegCLSIDs[]; 44 39 45 #ifndef WEBKIT_API 40 46 #ifdef WEBKIT_EXPORTS … … 49 55 #endif 50 56 51 extern ULONG gLockCount;52 extern ULONG gClassCount;53 extern HashCountedSet<WTF::String>& gClassNameCount();54 extern HINSTANCE gInstance;55 extern CLSID gRegCLSIDs[];56 57 57 WEBKIT_API void shutDownWebKit(); 58 58
Note:
See TracChangeset
for help on using the changeset viewer.