mirror of
https://github.com/wolfpld/tracy
synced 2025-04-30 12:53:51 +00:00
Add AddrStat::operator+=( AddrStat ).
This commit is contained in:
parent
22a8c53e8b
commit
046881e32f
@ -104,6 +104,13 @@ private:
|
|||||||
{
|
{
|
||||||
uint32_t local;
|
uint32_t local;
|
||||||
uint32_t ext;
|
uint32_t ext;
|
||||||
|
|
||||||
|
AddrStat& operator+=( const AddrStat& other )
|
||||||
|
{
|
||||||
|
local += other.local;
|
||||||
|
ext += other.ext;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user