From e2e206d81bad6c8624fb81ef46a6c81a69792f15 Mon Sep 17 00:00:00 2001 From: worktycho Date: Sat, 9 May 2015 10:59:08 +0100 Subject: [PATCH] Fixed remaing pragmas --- src/Vector3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Vector3.h b/src/Vector3.h index 84e9183be..f051ce2d2 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -137,14 +137,14 @@ public: // To perform EPS-based comparison, use the EqualsEps() function #ifdef __clang__ - #pragma clang diagnostics push - #pragma clang diagnostics ignored "-Wfloat-equal" + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wfloat-equal" #endif return !((x != a_Rhs.x) || (y != a_Rhs.y) || (z != a_Rhs.z)); #ifdef __clang__ - #pragma clang diagnostics pop + #pragma clang diagnostic pop #endif }