Fix compile error
This commit is contained in:
parent
6436e2fe9b
commit
ca6acfd419
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ namespace lua
|
|||
|
||||
virtual const char* what() const
|
||||
{
|
||||
return this->m_what.c_str();
|
||||
return m_what.c_str();
|
||||
}
|
||||
protected:
|
||||
std::string m_what;
|
||||
|
@ -115,7 +115,7 @@ namespace lua
|
|||
}
|
||||
}
|
||||
|
||||
lua_State* get_st() const noexcept
|
||||
lua_State* get_st() const
|
||||
{
|
||||
return st;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue