s/boost::result_of/cpp11::result_of/g

This commit is contained in:
Sébastien Loriot
2013-03-14 10:38:13 +01:00
parent d6905c61be
commit f97d6b8bd9
49 changed files with 172 additions and 172 deletions
@@ -47,7 +47,7 @@ namespace internal { \
bool \
do_intersect(const typename K::A &c1, const typename K::B &c2, const K&) \
{ \
std::vector< typename boost::result_of<typename K::Intersect_2(typename K::A, typename K::B)>::type > res; \
std::vector< typename cpp11::result_of<typename K::Intersect_2(typename K::A, typename K::B)>::type > res; \
typename K::Intersect_2()(c1,c2,std::back_inserter(res)); \
return !res.empty(); \
} \