mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Warnings: Add missing overrides
This commit is contained in:
parent
6c32c4df87
commit
047448fbce
84 changed files with 630 additions and 627 deletions
|
|
@ -79,8 +79,8 @@ struct Settings
|
|||
|
||||
struct Test
|
||||
{
|
||||
Test() {}
|
||||
virtual ~Test() {}
|
||||
Test() = default;
|
||||
virtual ~Test() = default;
|
||||
|
||||
virtual void Keyboard (unsigned char /*key*/) {}
|
||||
virtual void KeyboardUp (unsigned char /*key*/) {}
|
||||
|
|
@ -88,7 +88,7 @@ struct Test
|
|||
std::unique_ptr<b2World> m_world { new b2World (b2Vec2 (0.0f, -10.0f)) };
|
||||
};
|
||||
|
||||
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wimplicit-int-float-conversion")
|
||||
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wimplicit-int-float-conversion", "-Wsuggest-override")
|
||||
|
||||
#include "../Assets/Box2DTests/AddPair.h"
|
||||
#include "../Assets/Box2DTests/ApplyForce.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue