mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
Spelling fix
This commit is contained in:
parent
20e1cc0880
commit
9e78aa7b32
1 changed files with 3 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ struct ListenerBase
|
|||
ListenerBase (int& counter) : c (counter) {}
|
||||
virtual ~ListenerBase() {}
|
||||
|
||||
// Required to supress VS2013 compiler warnings
|
||||
// Required to suppress VS2013 compiler warnings
|
||||
ListenerBase& operator= (const ListenerBase&) = delete;
|
||||
|
||||
virtual void f () = 0;
|
||||
|
|
@ -48,7 +48,7 @@ struct Listener1 : public ListenerBase
|
|||
{
|
||||
Listener1 (int& counter) : ListenerBase (counter) {}
|
||||
|
||||
// Required to supress VS2013 compiler warnings
|
||||
// Required to suppress VS2013 compiler warnings
|
||||
Listener1& operator= (const Listener1&) = delete;
|
||||
|
||||
void f () override { c += 1; }
|
||||
|
|
@ -64,7 +64,7 @@ struct Listener2 : public ListenerBase
|
|||
{
|
||||
Listener2 (int& counter) : ListenerBase (counter) {}
|
||||
|
||||
// Required to supress VS2013 compiler warnings
|
||||
// Required to suppress VS2013 compiler warnings
|
||||
Listener1& operator= (const Listener1&) = delete;
|
||||
|
||||
void f () override { c -= 2; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue