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:
parent
951b873c14
commit
2fb19ffd8f
176 changed files with 867 additions and 894 deletions
|
|
@ -49,9 +49,9 @@
|
|||
#include "../Assets/DemoUtilities.h"
|
||||
|
||||
//==============================================================================
|
||||
class JavaScriptDemo : public Component,
|
||||
private CodeDocument::Listener,
|
||||
private Timer
|
||||
class JavaScriptDemo final : public Component,
|
||||
private CodeDocument::Listener,
|
||||
private Timer
|
||||
{
|
||||
public:
|
||||
JavaScriptDemo()
|
||||
|
|
@ -125,7 +125,7 @@ public:
|
|||
|
||||
//==============================================================================
|
||||
// This class is used by the script, and provides methods that the JS can call.
|
||||
struct DemoClass : public DynamicObject
|
||||
struct DemoClass final : public DynamicObject
|
||||
{
|
||||
DemoClass (JavaScriptDemo& demo) : owner (demo)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue