From bff03dd71d0d470b530611a903463ed0af764a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 15 Mar 2013 19:06:23 +0100 Subject: [PATCH] fix compilation loop issue for decltype based result_of --- Kernel_d/include/CGAL/Kernel_d/function_objects.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel_d/include/CGAL/Kernel_d/function_objects.h b/Kernel_d/include/CGAL/Kernel_d/function_objects.h index 2b552dc03c5..f57a6ae580c 100644 --- a/Kernel_d/include/CGAL/Kernel_d/function_objects.h +++ b/Kernel_d/include/CGAL/Kernel_d/function_objects.h @@ -215,7 +215,7 @@ public: #endif template - typename cpp11::result_of::type + typename result::type operator()(const T1& t1, const T2& t2) const { return internal::intersection(t1, t2, R()); } };