Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-06-03 20:20:53 +0400
committerHoward Hinnant <hhinnant@apple.com>2011-06-03 20:20:53 +0400
commit91a4750733ce58a3098cc6d97ba897abdb4acb83 (patch)
tree2e0422a0fddd991f8312c44bcc29b089096b251b /libcxx/include/deque
parenta4a59aebd922c117e8f684f4ac31594343679504 (diff)
noexcept for <forward_list>.
llvm-svn: 132553
Diffstat (limited to 'libcxx/include/deque')
-rw-r--r--libcxx/include/deque2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/deque b/libcxx/include/deque
index 71fa7f845e1d..6ada42a6620a 100644
--- a/libcxx/include/deque
+++ b/libcxx/include/deque
@@ -948,7 +948,7 @@ public:
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
void swap(__deque_base& __c)
- _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value||
+ _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value ||
__is_nothrow_swappable<allocator_type>::value);
protected:
void clear() _NOEXCEPT;