From bff2e043dc65bf8c7c1707a67f94ec4bd48bc009 Mon Sep 17 00:00:00 2001 From: Guillaume Damiand Date: Tue, 16 Dec 2014 10:30:14 +0100 Subject: [PATCH] Initialize consts. --- Kernel_23/src/CGAL/kernel.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Kernel_23/src/CGAL/kernel.cpp b/Kernel_23/src/CGAL/kernel.cpp index 047ff201ddd..27d0dfa90ed 100644 --- a/Kernel_23/src/CGAL/kernel.cpp +++ b/Kernel_23/src/CGAL/kernel.cpp @@ -27,11 +27,11 @@ namespace CGAL { -const Translation TRANSLATION; -const Rotation ROTATION; -const Scaling SCALING; -const Reflection REFLECTION; -const Identity_transformation IDENTITY; +const Translation TRANSLATION = Translation(); +const Rotation ROTATION = Rotation(); +const Scaling SCALING = Scaling(); +const Reflection REFLECTION = Reflection(); +const Identity_transformation IDENTITY = Identity_transformation(); const Origin ORIGIN = Origin(); const Null_vector NULL_VECTOR = Null_vector();