mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added various clang-tidy modernize-* fixes
This commit is contained in:
parent
360be3400d
commit
a234721110
162 changed files with 283 additions and 338 deletions
|
|
@ -110,7 +110,7 @@ public:
|
|||
{
|
||||
public:
|
||||
/** Destructor. */
|
||||
virtual ~Listener() {}
|
||||
virtual ~Listener() = default;
|
||||
|
||||
/** Called when the OSCReceiver receives a new OSC message.
|
||||
You must implement this function.
|
||||
|
|
@ -150,7 +150,7 @@ public:
|
|||
{
|
||||
public:
|
||||
/** Destructor. */
|
||||
virtual ~ListenerWithOSCAddress() {}
|
||||
virtual ~ListenerWithOSCAddress() = default;
|
||||
|
||||
/** Called when the OSCReceiver receives an OSC message with an OSC address
|
||||
pattern that matches the OSC address with which this listener was added.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue