Merge pull request #1268 from lrineau/Cartesian_kernel-fix_with_clang_and_gmpxx-GF

Fix compilation error with gmpxx
This commit is contained in:
Sebastien Loriot 2016-07-15 15:08:59 +02:00 committed by GitHub
commit 2b1edf6f91
1 changed files with 1 additions and 1 deletions

View File

@ -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