mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
fix for gcc
This commit is contained in:
parent
4b53f137de
commit
c7fb2ee987
@ -363,16 +363,17 @@ void ThreadTest::testThreadFunction()
|
||||
}
|
||||
|
||||
|
||||
void ThreadTest::testThreadFunctor()
|
||||
struct Functor
|
||||
{
|
||||
struct Functor
|
||||
{
|
||||
void operator () ()
|
||||
{
|
||||
++MyRunnable::_staticVar;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
void ThreadTest::testThreadFunctor()
|
||||
{
|
||||
Thread thread;
|
||||
|
||||
assert (!thread.isRunning());
|
||||
|
Loading…
Reference in New Issue
Block a user