Kaydet (Commit) 643283d4 authored tarafından Takeshi Abe's avatar Takeshi Abe

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
üst 41d3adbe
......@@ -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); }
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment