From 9ec5afb7c5a22ea004b7ff682bea6b8f5e34cbe2 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 10 Jul 2017 17:43:14 +0200 Subject: [PATCH] Fix #2206 @mglisse: > For number types using expression templates, we need to specify the template parameter --- Cartesian_kernel/include/CGAL/constructions/kernel_ftC2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cartesian_kernel/include/CGAL/constructions/kernel_ftC2.h b/Cartesian_kernel/include/CGAL/constructions/kernel_ftC2.h index 20401e3e734..85efef39788 100644 --- a/Cartesian_kernel/include/CGAL/constructions/kernel_ftC2.h +++ b/Cartesian_kernel/include/CGAL/constructions/kernel_ftC2.h @@ -455,7 +455,7 @@ weighted_circumcenterC2( const RT &px, const RT &py, const We &pw, RT dqw = RT(qw-pw); RT drw = RT(rw-pw); - weighted_circumcenter_translateC2(qx-px, qy-py, dqw,rx-px, ry-py,drw,x, y); + weighted_circumcenter_translateC2(qx-px, qy-py, dqw,rx-px, ry-py,drw,x, y); x += px; y += py; }