[Libreoffice-commits] core.git: sw/source

Takeshi Abe tabe at fixedpoint.jp
Mon Nov 24 22:13:33 PST 2014


 sw/source/core/access/accfrmobjmap.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 643283d4b3b8581fa5aa9b47cda90583b4aed3e7
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Tue Nov 25 15:08:07 2014 +0900

    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

diff --git a/sw/source/core/access/accfrmobjmap.hxx b/sw/source/core/access/accfrmobjmap.hxx
index 2ace69d..fedc573 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); }
 };


More information about the Libreoffice-commits mailing list