mirror of
https://github.com/boostorg/utility.git
synced 2025-05-08 18:34:02 +00:00
add missing my_int3::operator!=
[SVN r9231]
This commit is contained in:
parent
e9105d32cb
commit
2e0ee55b5e
@ -213,6 +213,7 @@ public:
|
||||
std::ptrdiff_t operator-(const my_int3& x) { return m_int - x.m_int; }
|
||||
my_int3& operator--() { --m_int; return *this; }
|
||||
bool operator==(const my_int3& x) const { return m_int == x.m_int; }
|
||||
bool operator!=(const my_int3& x) const { return m_int != x.m_int; }
|
||||
bool operator<(const my_int3& x) const { return m_int < x.m_int; }
|
||||
private:
|
||||
int m_int;
|
||||
|
Loading…
x
Reference in New Issue
Block a user