mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
lower engine requirements back to c++17 standards, not c++20.
This commit is contained in:
parent
e6ead9f268
commit
3bdce1f33e
2 changed files with 4 additions and 6 deletions
|
|
@ -80,14 +80,14 @@ struct SceneBinRange
|
|||
|
||||
inline bool operator==(const SceneBinRange& other) const
|
||||
{
|
||||
return dMemcmp(minCoord, other.minCoord, sizeof(minCoord)) == 0 &&
|
||||
dMemcmp(maxCoord, other.maxCoord, sizeof(maxCoord)) == 0;
|
||||
return memcmp(minCoord, other.minCoord, sizeof(minCoord)) == 0 &&
|
||||
memcmp(maxCoord, other.maxCoord, sizeof(maxCoord)) == 0;
|
||||
}
|
||||
|
||||
inline bool operator!=(const SceneBinRange& other) const
|
||||
{
|
||||
if (dMemcmp(minCoord, other.minCoord, sizeof(minCoord)) == 0 &&
|
||||
dMemcmp(maxCoord, other.maxCoord, sizeof(maxCoord)) == 0)
|
||||
if (memcmp(minCoord, other.minCoord, sizeof(minCoord)) == 0 &&
|
||||
memcmp(maxCoord, other.maxCoord, sizeof(maxCoord)) == 0)
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue