summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/core/access/accmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx
index c4071145c644..6a153ff5db53 100644
--- a/sw/source/core/access/accmap.cxx
+++ b/sw/source/core/access/accmap.cxx
@@ -245,8 +245,8 @@ public:
iterator begin() { return maMap.begin(); }
iterator end() { return maMap.end(); }
- const_iterator cbegin() { return maMap.cbegin(); }
- const_iterator cend() { return maMap.cend(); }
+ const_iterator cbegin() const { return maMap.cbegin(); }
+ const_iterator cend() const { return maMap.cend(); }
bool empty() const { return maMap.empty(); }
iterator find(const key_type& key) { return maMap.find(key); }
std::pair<iterator,bool> insert(const value_type& value ) { return maMap.insert(value); }