mirror of https://github.com/CGAL/cgal
Merge pull request #1268 from lrineau/Cartesian_kernel-fix_with_clang_and_gmpxx-GF
Fix compilation error with gmpxx
This commit is contained in:
commit
2b1edf6f91
|
|
@ -60,7 +60,7 @@ public:
|
|||
: base(CGAL::make_array(x, y)) {}
|
||||
|
||||
VectorC2(const FT &hx, const FT &hy, const FT &hw)
|
||||
: base( hw != FT(1) ? CGAL::make_array(hx/hw, hy/hw)
|
||||
: base( hw != FT(1) ? CGAL::make_array<FT>(hx/hw, hy/hw)
|
||||
: CGAL::make_array(hx, hy) ) {}
|
||||
|
||||
const FT & x() const
|
||||
|
|
|
|||
Loading…
Reference in New Issue