File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ public:
5959
6060 deque& operator=(const deque& c);
6161 deque& operator=(deque&& c)
62- noexcept((__alloc_traits ::propagate_on_container_move_assignment::value &&
62+ noexcept((allocator_traits<allocator_type> ::propagate_on_container_move_assignment::value &&
6363 is_nothrow_move_assignable<allocator_type>::value) ||
64- __alloc_traits ::is_always_equal::value);
64+ allocator_traits<allocator_type> ::is_always_equal::value);
6565 deque& operator=(initializer_list<value_type> il);
6666
6767 template <class InputIterator>
@@ -133,7 +133,7 @@ public:
133133 iterator erase(const_iterator p);
134134 iterator erase(const_iterator f, const_iterator l);
135135 void swap(deque& c)
136- noexcept(__alloc_traits ::is_always_equal::value); // C++17
136+ noexcept(allocator_traits<allocator_type> ::is_always_equal::value); // C++17
137137 void clear() noexcept;
138138};
139139
You can’t perform that action at this time.
0 commit comments