1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +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

@ -32,7 +32,7 @@
#include "jucer_ContentComponents.h"
//==============================================================================
struct ContentComponent : public Component
struct ContentComponent final : public Component
{
ContentComponent()
{
@ -164,7 +164,7 @@ static std::unique_ptr<Component> createProjectTemplatesTab (ContentComponent& c
}
//==============================================================================
struct ProjectTemplatesAndExamples : public TabbedComponent
struct ProjectTemplatesAndExamples final : public TabbedComponent
{
ProjectTemplatesAndExamples (ContentComponent& c,
std::function<void (std::unique_ptr<Project>&&)>&& newProjectCb,
@ -203,8 +203,8 @@ struct ProjectTemplatesAndExamples : public TabbedComponent
private:
//==============================================================================
struct SetJUCEPathComponent : public Component,
private ChangeListener
struct SetJUCEPathComponent final : public Component,
private ChangeListener
{
explicit SetJUCEPathComponent (ProjectTemplatesAndExamples& o)
: owner (o)