Ignore:
Timestamp:
Jun 11, 2009, 10:57:50 AM (16 years ago)
Author:
[email protected]
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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.