Title: [101483] trunk/Source/_javascript_Core
Revision
101483
Author
hausm...@webkit.org
Date
2011-11-30 03:50:43 -0800 (Wed, 30 Nov 2011)

Log Message

Unreviewed propective build fix for Qt/Windows part 2 after r101477.

* wtf/ThreadSpecific.h: Fix the OS(WINDOWS) defines for the friend declaration for ThreadSpecific<T>::Data

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (101482 => 101483)


--- trunk/Source/_javascript_Core/ChangeLog	2011-11-30 11:43:41 UTC (rev 101482)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-11-30 11:50:43 UTC (rev 101483)
@@ -1,5 +1,11 @@
 2011-11-30  Simon Hausmann  <simon.hausm...@nokia.com>
 
+        Unreviewed propective build fix for Qt/Windows part 2 after r101477.
+
+        * wtf/ThreadSpecific.h: Fix the OS(WINDOWS) defines for the friend declaration for ThreadSpecific<T>::Data
+
+2011-11-30  Simon Hausmann  <simon.hausm...@nokia.com>
+
         Unreviewed propective build fix for Qt/Windows after r101477.
 
         * wtf/ThreadSpecific.h: Use OS(WINDOWS) for declaring "destructor", as it's

Modified: trunk/Source/_javascript_Core/wtf/ThreadSpecific.h (101482 => 101483)


--- trunk/Source/_javascript_Core/wtf/ThreadSpecific.h	2011-11-30 11:43:41 UTC (rev 101482)
+++ trunk/Source/_javascript_Core/wtf/ThreadSpecific.h	2011-11-30 11:50:43 UTC (rev 101483)
@@ -53,7 +53,7 @@
 
 namespace WTF {
 
-#if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK) && OS(WINDOWS)
+#if OS(WINDOWS)
 // ThreadSpecificThreadExit should be called each time when a thread is detached.
 // This is done automatically for threads created with WTF::createThread.
 void ThreadSpecificThreadExit();
@@ -69,7 +69,7 @@
     T& operator*();
 
 private:
-#if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK) && OS(WINDOWS)
+#if OS(WINDOWS)
     friend void ThreadSpecificThreadExit();
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to