commit | c560727d5e847f2628dc1246c1d35c4d9949389f | [log] [tgz] |
---|---|---|
author | Howard Hinnant <hhinnant@apple.com> | Fri Jun 03 17:30:28 2011 +0000 |
committer | Howard Hinnant <hhinnant@apple.com> | Fri Jun 03 17:30:28 2011 +0000 |
tree | 1a9e79c651bef10ae5ee1972149328c72b4e08b5 | |
parent | b965fed10bc47c74ed491717af082ecf5c8b815b [diff] [blame] |
noexcept for <list>. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@132562 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/deque b/include/deque index 6ada42a..10f78a9 100644 --- a/include/deque +++ b/include/deque
@@ -143,7 +143,8 @@ // specialized algorithms: template <class T, class Allocator> - void swap(deque<T,Allocator>& x, deque<T,Allocator>& y) noexcept(x.swap(y)); + void swap(deque<T,Allocator>& x, deque<T,Allocator>& y) + noexcept(noexcept(x.swap(y))); } // std