Compare commits

..

1 Commits

Author SHA1 Message Date
Jason Turner
0c0df2c982 VS 2008 related corrections. 2009-12-08 15:57:31 +00:00
3 changed files with 3 additions and 2 deletions

View File

@@ -17,6 +17,7 @@
#include <boost/bind.hpp>
#include <boost/cstdint.hpp>
#include <boost/type_traits/add_const.hpp>
#include <limits>
namespace chaiscript
{

View File

@@ -186,7 +186,7 @@ namespace chaiscript
Loadable_Module(const std::string &t_module_name, const std::string &t_filename)
: m_dlmodule(t_filename), m_func(m_dlmodule, "create_chaiscript_module_" + t_module_name),
m_moduleptr(m_func.m_symbol());
m_moduleptr(m_func.m_symbol())
{
}

View File

@@ -973,7 +973,7 @@ namespace chaiscript
return retval;
}
}
catch (const chaiscript::Return_Value &rv) {
catch (const chaiscript::Return_Value &/*rv*/) {
ss.pop_scope();
throw;
}