1
0
Fork 0

Fixed remaing pragmas

This commit is contained in:
worktycho 2015-05-09 10:59:08 +01:00
parent 4dcd9a9924
commit e2e206d81b
1 changed files with 3 additions and 3 deletions

View File

@ -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
}