mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +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 ext;
|
||||
|
||||
AddrStat& operator+=( const AddrStat& other )
|
||||
{
|
||||
local += other.local;
|
||||
ext += other.ext;
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user