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:
Philipp Möller 2012-06-26 15:49:41 +00:00
parent ff418f7695
commit e3d53ae16c
1 changed files with 1 additions and 1 deletions

View File

@ -3234,7 +3234,7 @@ public:
return is_equal(arc2);
}
#if defined(_MSC_VER)
#if defined(_MSC_VER) || defined(__clang__)
// befriending the kernel point
friend typename Curved_kernel_via_analysis_2::Point_2;