mirror of https://github.com/CGAL/cgal
fix compilation loop issue for decltype based result_of
This commit is contained in:
parent
91943b0df1
commit
bff03dd71d
|
|
@ -215,7 +215,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
template <class T1, class T2>
|
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
|
operator()(const T1& t1, const T2& t2) const
|
||||||
{ return internal::intersection(t1, t2, R()); }
|
{ return internal::intersection(t1, t2, R()); }
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue