mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Enabled some more warning flags in Xcode, and fixed the problems they caused
This commit is contained in:
parent
6bb7618e1e
commit
cadac817c6
228 changed files with 353 additions and 337 deletions
|
|
@ -180,7 +180,7 @@ public:
|
|||
{
|
||||
public:
|
||||
ValueSource();
|
||||
virtual ~ValueSource();
|
||||
virtual ~ValueSource() override;
|
||||
|
||||
/** Returns the current value of this object. */
|
||||
virtual var getValue() const = 0;
|
||||
|
|
|
|||
|
|
@ -815,7 +815,7 @@ struct ValueTreePropertyValueSource : public Value::ValueSource,
|
|||
tree.addListener (this);
|
||||
}
|
||||
|
||||
~ValueTreePropertyValueSource()
|
||||
~ValueTreePropertyValueSource() override
|
||||
{
|
||||
tree.removeListener (this);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ public:
|
|||
ValueTreeSynchroniser (const ValueTree& tree);
|
||||
|
||||
/** Destructor. */
|
||||
virtual ~ValueTreeSynchroniser();
|
||||
~ValueTreeSynchroniser() override;
|
||||
|
||||
/** This callback happens when the ValueTree changes and the given state-change message
|
||||
needs to be applied to any other trees that need to stay in sync with it.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue