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

@@ -32,7 +32,7 @@ enum PycMagic {
class PycModule {
public:
PycModule();
PycModule() : m_maj(-1), m_min(-1), m_unicode(false) { }
void loadFromFile(const char* filename);
bool isValid() const { return (m_maj >= 0) && (m_min >= 0); }