Title: [156127] trunk/Source/WTF
Revision
156127
Author
[email protected]
Date
2013-09-19 16:02:38 -0700 (Thu, 19 Sep 2013)

Log Message

Substitute return type void for bool in function declaration for WTF::initializeWebThread()

Reviewed by Joseph Pecoraro.

Make the declaration of WTF::initializeWebThread() match the function prototype
of its definition.

* wtf/MainThread.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (156126 => 156127)


--- trunk/Source/WTF/ChangeLog	2013-09-19 22:42:35 UTC (rev 156126)
+++ trunk/Source/WTF/ChangeLog	2013-09-19 23:02:38 UTC (rev 156127)
@@ -1,3 +1,14 @@
+2013-09-19  Daniel Bates  <[email protected]>
+
+        Substitute return type void for bool in function declaration for WTF::initializeWebThread()
+
+        Reviewed by Joseph Pecoraro.
+
+        Make the declaration of WTF::initializeWebThread() match the function prototype
+        of its definition.
+
+        * wtf/MainThread.h:
+
 2013-09-19  Andreas Kling  <[email protected]>
 
         Assume allocator success in Vector unless using try* functions.

Modified: trunk/Source/WTF/wtf/MainThread.h (156126 => 156127)


--- trunk/Source/WTF/wtf/MainThread.h	2013-09-19 22:42:35 UTC (rev 156126)
+++ trunk/Source/WTF/wtf/MainThread.h	2013-09-19 23:02:38 UTC (rev 156127)
@@ -54,7 +54,7 @@
 #if USE(WEB_THREAD)
 WTF_EXPORT_PRIVATE bool isWebThread();
 WTF_EXPORT_PRIVATE bool isUIThread();
-WTF_EXPORT_PRIVATE bool initializeWebThread();
+WTF_EXPORT_PRIVATE void initializeWebThread();
 WTF_EXPORT_PRIVATE void initializeApplicationUIThreadIdentifier();
 WTF_EXPORT_PRIVATE void initializeWebThreadIdentifier();
 WTF_EXPORT_PRIVATE bool canAccessThreadLocalDataForThread(ThreadIdentifier);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to