Changeset 44607 in webkit


Ignore:
Timestamp:
Jun 11, 2009 10:57:50 AM (15 years ago)
Author:
ariya@webkit.org
Message:

2009-06-11 Laszlo Gombos <Laszlo Gombos>

Reviewed by Holger Freyther.

Fix compilation warnings
<https://bugs.webkit.org/show_bug.cgi?id=26015>

  • wtf/ThreadingNone.cpp: (WTF::ThreadCondition::wait): Fix compilation warning. (WTF::ThreadCondition::timedWait): Ditto.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r44564 r44607  
     12009-06-11  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        Fix compilation warnings
     6        <https://bugs.webkit.org/show_bug.cgi?id=26015>
     7
     8        * wtf/ThreadingNone.cpp:
     9        (WTF::ThreadCondition::wait): Fix compilation warning.
     10        (WTF::ThreadCondition::timedWait): Ditto.
     11
    1122009-06-10  Brent Fulgham  <bfulgham@webkit.org>
    213
  • trunk/JavaScriptCore/wtf/ThreadingNone.cpp

    r43663 r44607  
    4949ThreadCondition::ThreadCondition() { }
    5050ThreadCondition::~ThreadCondition() { }
    51 void ThreadCondition::wait(Mutex& mutex) { }
    52 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) { return false; }
     51void ThreadCondition::wait(Mutex&) { }
     52bool ThreadCondition::timedWait(Mutex&, double) { return false; }
    5353void ThreadCondition::signal() { }
    5454void ThreadCondition::broadcast() { }
Note: See TracChangeset for help on using the changeset viewer.