From 34b12a170e1b3264fa46a8996cc67e12e2fea947 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 14 Nov 2014 14:47:15 +0900 Subject: Mark as const Change-Id: I3236bbbdddf819afb11d8f80dd80c92a04281bf9 --- sw/source/core/access/accmap.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw') 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 insert(const value_type& value ) { return maMap.insert(value); } -- cgit v1.2.3