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

@ -31,8 +31,8 @@
//==============================================================================
#if JUCE_MAC || JUCE_WINDOWS || JUCE_LINUX || JUCE_BSD
// Just add a simple icon to the Window system tray area or Mac menu bar..
struct DemoTaskbarComponent : public SystemTrayIconComponent,
private Timer
struct DemoTaskbarComponent final : public SystemTrayIconComponent,
private Timer
{
DemoTaskbarComponent()
{
@ -76,7 +76,7 @@
std::unique_ptr<AudioDeviceManager> sharedAudioDeviceManager;
//==============================================================================
class DemoRunnerApplication : public JUCEApplication
class DemoRunnerApplication final : public JUCEApplication
{
public:
//==============================================================================
@ -117,7 +117,7 @@ public:
ApplicationCommandManager& getGlobalCommandManager() { return commandManager; }
private:
class MainAppWindow : public DocumentWindow
class MainAppWindow final : public DocumentWindow
{
public:
MainAppWindow (const String& name)