diff options
author | Chris Robinson <[email protected]> | 2022-02-20 04:13:03 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-02-20 04:13:03 -0800 |
commit | 023ad6320be73d1cee3facad1722e94d7258f2bb (patch) | |
tree | 1bf32b6d4a3e26ac821c47935c5b36f01eeee601 /al/eax_api.cpp | |
parent | 0e26e0809d1aaa8501f310982b554565dc9e8beb (diff) |
Inline a couple more equality operators
Diffstat (limited to 'al/eax_api.cpp')
-rw-r--r-- | al/eax_api.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/al/eax_api.cpp b/al/eax_api.cpp index 391363ec..bc778f03 100644 --- a/al/eax_api.cpp +++ b/al/eax_api.cpp @@ -254,21 +254,6 @@ const GUID EAX_RINGMODULATOR_EFFECT = bool operator==( - const EAXVECTOR& lhs, - const EAXVECTOR& rhs) noexcept -{ - return lhs.x == rhs.x && lhs.y == rhs.y && lhs.z == rhs.z; -} - -bool operator!=( - const EAXVECTOR& lhs, - const EAXVECTOR& rhs) noexcept -{ - return !(lhs == rhs); -} - - -bool operator==( const EAX40CONTEXTPROPERTIES& lhs, const EAX40CONTEXTPROPERTIES& rhs) noexcept { |