Changeset 101482 in webkit


Ignore:
Timestamp:
Nov 30, 2011, 3:43:41 AM (14 years ago)
Author:
Simon Hausmann
Message:

Unreviewed propective build fix for Qt/Windows after r101477.

  • wtf/ThreadSpecific.h: Use OS(WINDOWS) for declaring "destructor", as it's

only referenced from within another OS(WINDOWS) section.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r101481 r101482  
     12011-11-30  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        Unreviewed propective build fix for Qt/Windows after r101477.
     4
     5        * wtf/ThreadSpecific.h: Use OS(WINDOWS) for declaring "destructor", as it's
     6        only referenced from within another OS(WINDOWS) section.
     7
    182011-11-30  Csaba Osztrogonác  <ossy@webkit.org>
    29
  • trunk/Source/JavaScriptCore/wtf/ThreadSpecific.h

    r101477 r101482  
    9292        T* value;
    9393        ThreadSpecific<T>* owner;
    94 #if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK)
     94#if OS(WINDOWS)
    9595        void (*destructor)(void*);
    9696#endif
Note: See TracChangeset for help on using the changeset viewer.