diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-28 17:30:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-28 17:30:18 +0300 |
commit | 37c4338e84265705ec41c5da03e325255a9bce63 (patch) | |
tree | d159e2db539aaf0f8e0d25c9d7ecde5fb37d8a98 /src/resources/resource.h | |
parent | 2c93aa0a1e25f39ab351a4f12c5fd7f188a528a2 (diff) | |
download | plus-37c4338e84265705ec41c5da03e325255a9bce63.tar.gz plus-37c4338e84265705ec41c5da03e325255a9bce63.tar.bz2 plus-37c4338e84265705ec41c5da03e325255a9bce63.tar.xz plus-37c4338e84265705ec41c5da03e325255a9bce63.zip |
Show object name/source in memory counting tree.
Diffstat (limited to 'src/resources/resource.h')
-rw-r--r-- | src/resources/resource.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/resource.h b/src/resources/resource.h index 90cea413c..4d9e03f2d 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -101,6 +101,9 @@ class Resource notfinal : public MemoryCounter int calcMemoryLocal() const override; + std::string getCounterName() const override + { return mIdPath + "-" + mSource; } + #ifdef DEBUG_DUMP_LEAKS bool getDumped() const A_WARN_UNUSED { return mDumped; } |