diff --git a/server/TracySourceView.hpp b/server/TracySourceView.hpp index 97a9a8a8..c548070c 100644 --- a/server/TracySourceView.hpp +++ b/server/TracySourceView.hpp @@ -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: