Fix compile error

This commit is contained in:
xboi209 2016-08-05 02:24:49 -07:00
parent 6436e2fe9b
commit ca6acfd419

View file

@ -60,7 +60,7 @@ namespace lua
virtual const char* what() const virtual const char* what() const
{ {
return this->m_what.c_str(); return m_what.c_str();
} }
protected: protected:
std::string m_what; std::string m_what;
@ -115,7 +115,7 @@ namespace lua
} }
} }
lua_State* get_st() const noexcept lua_State* get_st() const
{ {
return st; return st;
} }