Start requring C++11 with explicit virtual overrides.

This commit is contained in:
Michael Hansen
2019-10-02 14:40:25 -07:00
parent f02a339072
commit 8d3752b4f0
7 changed files with 42 additions and 40 deletions

View File

@@ -12,10 +12,10 @@ public:
~PycString() { delete[] m_value; }
bool isEqual(PycRef<PycObject> obj) const;
bool isEqual(PycRef<PycObject> obj) const override;
bool isEqual(const char* str) const;
void load(class PycData* stream, class PycModule* mod);
void load(class PycData* stream, class PycModule* mod) override;
int length() const { return m_length; }
const char* value() const { return m_value; }