fix compilation loop issue for decltype based result_of

This commit is contained in:
Sébastien Loriot 2013-03-15 19:06:23 +01:00
parent 91943b0df1
commit bff03dd71d
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ public:
#endif
template <class T1, class T2>
typename cpp11::result_of<Intersect(T1, T2)>::type
typename result<Intersect(T1,T2)>::type
operator()(const T1& t1, const T2& t2) const
{ return internal::intersection(t1, t2, R()); }
};