From 151904201815dae13ef28d1a26142ba84eaa102d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 22 Oct 2017 22:20:37 +0200 Subject: [PATCH] Add missing wxOVERRIDE to avoid clang warning to wxAny unit test Mark ConvertValue() virtual method inherited from the base class as overridden to avoid clang -Winconsistent-missing-override warning. --- tests/any/anytest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/any/anytest.cpp b/tests/any/anytest.cpp index d44e509ef5..2503386fed 100644 --- a/tests/any/anytest.cpp +++ b/tests/any/anytest.cpp @@ -666,7 +666,7 @@ public: virtual bool ConvertValue(const wxAnyValueBuffer& src, wxAnyValueType* dstType, - wxAnyValueBuffer& dst) const + wxAnyValueBuffer& dst) const wxOVERRIDE { MyClass value = GetValue(src);