fix for gcc

This commit is contained in:
Guenter Obiltschnig 2014-11-16 21:51:10 +01:00
parent 4b53f137de
commit c7fb2ee987

View File

@ -363,16 +363,17 @@ void ThreadTest::testThreadFunction()
} }
struct Functor
{
void operator () ()
{
++MyRunnable::_staticVar;
}
};
void ThreadTest::testThreadFunctor() void ThreadTest::testThreadFunctor()
{ {
struct Functor
{
void operator () ()
{
++MyRunnable::_staticVar;
}
};
Thread thread; Thread thread;
assert (!thread.isRunning()); assert (!thread.isRunning());