Minor style cleanup

This commit is contained in:
Michael Hansen
2014-01-20 22:21:56 -08:00
parent 6787d57a28
commit 36cf09ca82
6 changed files with 6 additions and 13 deletions

View File

@@ -10,7 +10,7 @@ public:
PycString(int type = TYPE_STRING)
: PycObject(type), m_value(0), m_length(0) { }
~PycString() { if (m_value) delete[] m_value; }
~PycString() { delete[] m_value; }
bool isEqual(PycRef<PycObject> obj) const;
bool isEqual(const char* str) const;