Remove c++11 override in testcase

This commit is contained in:
William S Fulton 2018-03-09 18:27:16 +00:00
commit 98ebd56942

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;