1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed some more Linux compiler warnings

This commit is contained in:
Tom Poole 2019-06-05 17:45:33 +01:00
parent 6b82c964cd
commit a4bd6cbc66
67 changed files with 205 additions and 141 deletions

View file

@ -141,7 +141,7 @@ public:
startThread (Random::getSystemRandom().nextInt (3) + 3);
}
~DemoThread()
~DemoThread() override
{
// allow the thread 2 seconds to stop cleanly - should be plenty of time.
stopThread (2000);
@ -234,7 +234,7 @@ public:
setSize (500, 500);
}
~MultithreadingDemo()
~MultithreadingDemo() override
{
pool.removeAllJobs (true, 2000);
}