mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Make overriding explicit and remove redundant virtual specifiers on overriding destructors - Core & UnitTests
This commit is contained in:
parent
0b0151770a
commit
f240e20e3f
130 changed files with 195 additions and 199 deletions
|
@ -17,7 +17,7 @@ public:
|
|||
AnalogStick(const char* name, std::unique_ptr<StickGate>&& stick_gate);
|
||||
AnalogStick(const char* name, const char* ui_name, std::unique_ptr<StickGate>&& stick_gate);
|
||||
|
||||
ReshapeData GetReshapableState(bool adjusted) const final override;
|
||||
ReshapeData GetReshapableState(bool adjusted) const final;
|
||||
ControlState GetGateRadiusAtAngle(double ang) const override;
|
||||
|
||||
StateData GetState() const;
|
||||
|
|
|
@ -24,7 +24,7 @@ public:
|
|||
|
||||
Cursor(std::string name, std::string ui_name);
|
||||
|
||||
ReshapeData GetReshapableState(bool adjusted) const final override;
|
||||
ReshapeData GetReshapableState(bool adjusted) const final;
|
||||
ControlState GetGateRadiusAtAngle(double ang) const override;
|
||||
|
||||
// Modifies the state
|
||||
|
|
|
@ -18,10 +18,10 @@ public:
|
|||
|
||||
explicit Force(const std::string& name);
|
||||
|
||||
ReshapeData GetReshapableState(bool adjusted) const final override;
|
||||
ControlState GetGateRadiusAtAngle(double ang) const final override;
|
||||
ReshapeData GetReshapableState(bool adjusted) const final;
|
||||
ControlState GetGateRadiusAtAngle(double ang) const final;
|
||||
|
||||
ControlState GetDefaultInputRadiusAtAngle(double angle) const final override;
|
||||
ControlState GetDefaultInputRadiusAtAngle(double angle) const final;
|
||||
|
||||
StateData GetState(bool adjusted = true) const;
|
||||
|
||||
|
|
|
@ -18,12 +18,12 @@ public:
|
|||
|
||||
explicit Tilt(const std::string& name);
|
||||
|
||||
ReshapeData GetReshapableState(bool adjusted) const final override;
|
||||
ControlState GetGateRadiusAtAngle(double angle) const final override;
|
||||
ReshapeData GetReshapableState(bool adjusted) const final;
|
||||
ControlState GetGateRadiusAtAngle(double angle) const final;
|
||||
|
||||
// Tilt is using the gate radius to adjust the tilt angle so we must provide an unadjusted value
|
||||
// for the default input radius.
|
||||
ControlState GetDefaultInputRadiusAtAngle(double angle) const final override;
|
||||
ControlState GetDefaultInputRadiusAtAngle(double angle) const final;
|
||||
|
||||
StateData GetState() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue