Fix compile error
This commit is contained in:
parent
de866c1ba5
commit
01499ccd5b
1 changed files with 4 additions and 4 deletions
|
@ -54,11 +54,11 @@ namespace lua
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~exception()
|
virtual ~exception() throw()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual const char* what() const
|
virtual const char* what() const throw()
|
||||||
{
|
{
|
||||||
return m_what.c_str();
|
return m_what.c_str();
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ namespace lua
|
||||||
|
|
||||||
// push to stack std::map
|
// push to stack std::map
|
||||||
template<typename _key, typename _val, typename _comp, typename _alloc>
|
template<typename _key, typename _val, typename _comp, typename _alloc>
|
||||||
void push(const std::map<_key, _val, _comp, _alloc>& v) throw()
|
void push(const std::map<_key, _val, _comp, _alloc>& v)
|
||||||
{
|
{
|
||||||
lua_newtable(st);
|
lua_newtable(st);
|
||||||
|
|
||||||
|
@ -201,7 +201,7 @@ namespace lua
|
||||||
|
|
||||||
// push to stack std::vector
|
// push to stack std::vector
|
||||||
template<typename _val, typename _alloc>
|
template<typename _val, typename _alloc>
|
||||||
void push(const std::vector<_val, _alloc>& v) throw()
|
void push(const std::vector<_val, _alloc>& v)
|
||||||
{
|
{
|
||||||
lua_newtable(st);
|
lua_newtable(st);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue