mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 15:07:28 +00:00
Fix warning for overrides (#961)
This commit is contained in:
parent
6fd80e3117
commit
c8cd51ef63
@ -257,7 +257,7 @@ private:
|
|||||||
/*!
|
/*!
|
||||||
\return The AMF value type
|
\return The AMF value type
|
||||||
*/
|
*/
|
||||||
AMFValueType GetValueType() { return ValueType; }
|
AMFValueType GetValueType() override { return ValueType; }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static const AMFValueType ValueType = AMFArray;
|
static const AMFValueType ValueType = AMFArray;
|
||||||
@ -362,7 +362,7 @@ private:
|
|||||||
/*!
|
/*!
|
||||||
\return The AMF value type
|
\return The AMF value type
|
||||||
*/
|
*/
|
||||||
AMFValueType GetValueType() { return ValueType; }
|
AMFValueType GetValueType() override { return ValueType; }
|
||||||
~AMFObjectValue() override;
|
~AMFObjectValue() override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user