Fix warning for overrides (#961)

This commit is contained in:
David Markowitz 2023-01-20 00:07:25 -08:00 committed by GitHub
parent 6fd80e3117
commit c8cd51ef63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -257,7 +257,7 @@ private:
/*!
\return The AMF value type
*/
AMFValueType GetValueType() { return ValueType; }
AMFValueType GetValueType() override { return ValueType; }
public:
static const AMFValueType ValueType = AMFArray;
@ -362,7 +362,7 @@ private:
/*!
\return The AMF value type
*/
AMFValueType GetValueType() { return ValueType; }
AMFValueType GetValueType() override { return ValueType; }
~AMFObjectValue() override;
public: