From e3719b32e50fac72289a39782b26260733c908b1 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Thu, 22 Jan 2015 21:56:30 +0100 Subject: [PATCH] Fix issue that prevented us from compiling with double precision with CMake --- src/decimal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decimal.h b/src/decimal.h index 52d0a0a8..4893bc94 100644 --- a/src/decimal.h +++ b/src/decimal.h @@ -29,7 +29,7 @@ /// ReactPhysiscs3D namespace namespace reactphysics3d { -#if defined(DOUBLE_PRECISION_ENABLED) // If we are compiling for double precision +#if defined(IS_DOUBLE_PRECISION_ENABLED) // If we are compiling for double precision typedef double decimal; #else // If we are compiling for single precision typedef float decimal;