mirror of https://github.com/CGAL/cgal
Also use typename on clang. This is the same fix as the previous one.
That code will still not work should someone use -std=c++03 on clang and a more substantial fix should be done.
This commit is contained in:
parent
ff418f7695
commit
e3d53ae16c
|
|
@ -3234,7 +3234,7 @@ public:
|
||||||
return is_equal(arc2);
|
return is_equal(arc2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) || defined(__clang__)
|
||||||
// befriending the kernel point
|
// befriending the kernel point
|
||||||
friend typename Curved_kernel_via_analysis_2::Point_2;
|
friend typename Curved_kernel_via_analysis_2::Point_2;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue