mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
Add missing return value on assignment operator
This commit is contained in:
@@ -45,5 +45,9 @@ public:
|
||||
}
|
||||
inline bool operator==(const BitFlagIterator &rhs) const { return flags == rhs.flags; }
|
||||
inline bool operator!=(const BitFlagIterator &rhs) const { return flags != rhs.flags; }
|
||||
inline BitFlagIterator &operator=(const BitFlagIterator &rhs) { flags = rhs.flags; }
|
||||
inline BitFlagIterator &operator=(const BitFlagIterator &rhs)
|
||||
{
|
||||
flags = rhs.flags;
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user