summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-11-25 15:08:07 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2014-11-25 15:12:38 +0900
commit643283d4b3b8581fa5aa9b47cda90583b4aed3e7 (patch)
tree1c6fb52dda3d5b1d84ce8ef303920217d3b6eb29
parent41d3adbe47610efc1e7bc848c129024a2ec19f9a (diff)
Drop noexcept
VS2012 does not support the noexcept feature: <http://msdn.microsoft.com/en-us/library/wfa0edys%28v=vs.110%29.aspx> Change-Id: If7c076ffe2ca263117654862f68cb7c4c142849f
-rw-r--r--sw/source/core/access/accfrmobjmap.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/access/accfrmobjmap.hxx b/sw/source/core/access/accfrmobjmap.hxx
index 2ace69de054f..fedc573b97ce 100644
--- a/sw/source/core/access/accfrmobjmap.hxx
+++ b/sw/source/core/access/accfrmobjmap.hxx
@@ -119,11 +119,11 @@ public:
static bool IsSortingRequired( const SwFrm& rFrm );
iterator begin() { return maMap.begin(); }
- const_iterator cbegin() const noexcept { return maMap.cbegin(); }
+ const_iterator cbegin() const { return maMap.cbegin(); }
iterator end() { return maMap.end(); }
- const_iterator cend() const noexcept { return maMap.cend(); }
- const_reverse_iterator crbegin() const noexcept { return maMap.crbegin(); }
- const_reverse_iterator crend() const noexcept { return maMap.crend(); }
+ const_iterator cend() const { return maMap.cend(); }
+ const_reverse_iterator crbegin() const { return maMap.crbegin(); }
+ const_reverse_iterator crend() const { return maMap.crend(); }
std::pair<iterator,bool> insert(const value_type& value) { return maMap.insert(value); }
};