mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-30 01:04:36 +00:00
Add missing operator.
This commit is contained in:
parent
7f90a0a84e
commit
f367b16dc0
@ -71,6 +71,7 @@ class View
|
|||||||
struct RangeSlim
|
struct RangeSlim
|
||||||
{
|
{
|
||||||
bool operator==( const Range& other ) const { return other.active == active && other.min == min && other.max == max; }
|
bool operator==( const Range& other ) const { return other.active == active && other.min == min && other.max == max; }
|
||||||
|
bool operator!=( const Range& other ) const { return !(*this == other); }
|
||||||
void operator=( const Range& other ) { active = other.active; min = other.min; max = other.max; }
|
void operator=( const Range& other ) { active = other.active; min = other.min; max = other.max; }
|
||||||
|
|
||||||
int64_t min, max;
|
int64_t min, max;
|
||||||
|
Loading…
Reference in New Issue
Block a user