summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Vector3.h6
1 files 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
}