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

Fix some LLVM 17 compiler warnings

This commit is contained in:
Tom Poole 2023-09-21 14:48:07 +01:00
parent 951b873c14
commit 2fb19ffd8f
176 changed files with 867 additions and 894 deletions

View file

@ -49,7 +49,7 @@
#include "../Assets/DemoUtilities.h"
//==============================================================================
class BouncingBall : private ComponentListener
class BouncingBall : private ComponentListener
{
public:
BouncingBall (Component& comp)
@ -145,8 +145,8 @@ private:
};
//==============================================================================
class DemoThread : public BouncingBall,
public Thread
class DemoThread final : public BouncingBall,
public Thread
{
public:
DemoThread (Component& containerComp)
@ -194,8 +194,8 @@ private:
//==============================================================================
class DemoThreadPoolJob : public BouncingBall,
public ThreadPoolJob
class DemoThreadPoolJob final : public BouncingBall,
public ThreadPoolJob
{
public:
DemoThreadPoolJob (Component& containerComp)
@ -232,8 +232,8 @@ private:
};
//==============================================================================
class MultithreadingDemo : public Component,
private Timer
class MultithreadingDemo final : public Component,
private Timer
{
public:
//==============================================================================