Remove c++11 override in testcase

This commit is contained in:
William S Fulton 2018-03-09 18:27:16 +00:00
parent b4f4ce4fd5
commit 98ebd56942
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class ContentDerived: public ContentBase
public:
ContentDerived():ContentBase() { m_name = "ContentDerived"; }
virtual ~ContentDerived() {}
virtual std::string get_name() const override { return m_name; }
virtual std::string get_name() const { return m_name; }
private:
std::string m_name;