mirror of https://github.com/CGAL/cgal
Merge pull request #696 from sloriot/Aos2-fix_warning
Fix warning with clang
This commit is contained in:
commit
4e19aee11b
|
|
@ -3235,7 +3235,7 @@ public:
|
||||||
return is_equal(arc2);
|
return is_equal(arc2);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_MSC_VER) || defined(__clang__)
|
#if defined(_MSC_VER)
|
||||||
// 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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -784,7 +784,7 @@ public:
|
||||||
|
|
||||||
// befriending the functors
|
// befriending the functors
|
||||||
|
|
||||||
#if defined(_MSC_VER) || defined(__clang__)
|
#if defined(_MSC_VER)
|
||||||
#define CGAL_BEFRIEND_CKvA_2_FUNCTOR(Z) \
|
#define CGAL_BEFRIEND_CKvA_2_FUNCTOR(Z) \
|
||||||
friend typename Curved_kernel_via_analysis_2::Z; \
|
friend typename Curved_kernel_via_analysis_2::Z; \
|
||||||
friend typename Curved_kernel_via_analysis_2_Functors::Z< Curved_kernel_via_analysis_2 >
|
friend typename Curved_kernel_via_analysis_2_Functors::Z< Curved_kernel_via_analysis_2 >
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue