Added float comparison warning overrides to Vector3::hasNonZeroLength
This commit is contained in:
parent
ed404bc2f6
commit
eb84ffe5a6
@ -80,7 +80,16 @@ public:
|
|||||||
|
|
||||||
inline bool HasNonZeroLength(void) const
|
inline bool HasNonZeroLength(void) const
|
||||||
{
|
{
|
||||||
|
#ifndef __GNUC__
|
||||||
|
#pragma clang diagnostics push
|
||||||
|
#pragma clang diagnostics ignored "-Wfloat-equal"
|
||||||
|
#endif
|
||||||
|
|
||||||
return ((x != 0) || (y != 0) || (z != 0));
|
return ((x != 0) || (y != 0) || (z != 0));
|
||||||
|
|
||||||
|
#ifndef __GNUC__
|
||||||
|
#pragma clang diagnostics pop
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
inline double Length(void) const
|
inline double Length(void) const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user