diff options
Diffstat (limited to 'lib/Core/Memory.h')
-rw-r--r-- | lib/Core/Memory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Core/Memory.h b/lib/Core/Memory.h index 7f7b86a8..9ce8e09b 100644 --- a/lib/Core/Memory.h +++ b/lib/Core/Memory.h @@ -40,10 +40,10 @@ public: /// size in bytes unsigned size; - std::string name; + mutable std::string name; bool isLocal; - bool isGlobal; + mutable bool isGlobal; bool isFixed; /// true if created by us. @@ -96,7 +96,7 @@ public: /// Get an identifying string for this allocation. void getAllocInfo(std::string &result) const; - void setName(std::string name) { + void setName(std::string name) const { this->name = name; } |