summaryrefslogtreecommitdiff
path: root/tools/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/map.cpp')
-rw-r--r--tools/map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/map.cpp b/tools/map.cpp
index d2ebb5d6e..7c36f93d1 100644
--- a/tools/map.cpp
+++ b/tools/map.cpp
@@ -118,7 +118,7 @@ public:
void setName(const std::string& name) { _name = name; }
const std::string& getName() const { return _name; }
- size_t size() { return _end - _start; }
+ size_t size() const { return _end - _start; }
};
struct StringData {