Rollback to r437 for bind_first implementation. The "cleaned up" version was a no-go in some cases

This commit is contained in:
Jason Turner
2009-11-08 16:28:35 +00:00
parent 1bc968e788
commit 3a37ceedb7
4 changed files with 50 additions and 70 deletions

View File

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