Move from boost::mem_fn to std::mem_fn

This commit is contained in:
Jason Turner
2011-09-10 14:01:05 -06:00
parent 4522ff0732
commit f4080c4c75
3 changed files with 13 additions and 13 deletions

View File

@@ -44,7 +44,7 @@ namespace chaiscript
typename boost::function_types::function_type<boost::function_types::components<T> >::type> (
std::function<
typename boost::function_types::function_type<boost::function_types::components<T> >::type
>(boost::mem_fn(t))));
>(std::mem_fn(t))));
}
};