mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-11 06:59:07 +01:00
Merge pull request #4885 from lioncash/control-ref
ControlReference: Add missing virtual destructor
This commit is contained in:
commit
2cad67952d
@ -52,6 +52,8 @@ ControlReference::ControlReference() : range(1), m_parsed_expression(nullptr)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ControlReference::~ControlReference() = default;
|
||||||
|
|
||||||
InputReference::InputReference() : ControlReference()
|
InputReference::InputReference() : ControlReference()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,7 @@ class ControlReference
|
|||||||
public:
|
public:
|
||||||
static bool InputGateOn();
|
static bool InputGateOn();
|
||||||
|
|
||||||
|
virtual ~ControlReference();
|
||||||
virtual ControlState State(const ControlState state = 0) = 0;
|
virtual ControlState State(const ControlState state = 0) = 0;
|
||||||
virtual ciface::Core::Device::Control* Detect(const unsigned int ms,
|
virtual ciface::Core::Device::Control* Detect(const unsigned int ms,
|
||||||
ciface::Core::Device* const device) = 0;
|
ciface::Core::Device* const device) = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user