From c8cd51ef63472fa8cafd7492a085ef7d134275b2 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Fri, 20 Jan 2023 00:07:25 -0800 Subject: [PATCH] Fix warning for overrides (#961) --- dCommon/AMFFormat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dCommon/AMFFormat.h b/dCommon/AMFFormat.h index 2b423abd..6e479ef6 100644 --- a/dCommon/AMFFormat.h +++ b/dCommon/AMFFormat.h @@ -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: