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

@ -53,7 +53,7 @@
#include "../Assets/DemoUtilities.h"
//==============================================================================
class UnitTestsDemo : public Component
class UnitTestsDemo final : public Component
{
public:
UnitTestsDemo()
@ -146,8 +146,8 @@ public:
private:
//==============================================================================
class TestRunnerThread : public Thread,
private Timer
class TestRunnerThread final : public Thread,
private Timer
{
public:
TestRunnerThread (UnitTestsDemo& utd, const String& ctg)
@ -190,7 +190,7 @@ private:
//==============================================================================
// This subclass of UnitTestRunner is used to redirect the test output to our
// TextBox, and to interrupt the running tests when our thread is asked to stop..
class CustomTestRunner : public UnitTestRunner
class CustomTestRunner final : public UnitTestRunner
{
public:
CustomTestRunner (TestRunnerThread& trt) : owner (trt) {}