Simplify implementation of bind_first and add some detail namespacing

This commit is contained in:
Jason Turner
2009-11-08 14:46:44 +00:00
parent d946cb7e9d
commit 4e5c972e66
4 changed files with 71 additions and 51 deletions

View File

@@ -378,7 +378,7 @@ namespace chaiscript
virtual Boxed_Value operator()(const std::vector<Boxed_Value> &params) const
{
return Do_Call<typename boost::function<Func>::result_type>::go(m_f, params);
return detail::Do_Call<typename boost::function<Func>::result_type>::go(m_f, params);
}
virtual int get_arity() const