From Jason Turner

[deque.syn]

Diff to HTML by rtfpessoa

tmp/tmpa2yr11ct/{from.md → to.md} RENAMED
@@ -16,10 +16,11 @@ namespace std {
16
 
17
  template<class T, class Allocator>
18
  void swap(deque<T, Allocator>& x, deque<T, Allocator>& y)
19
  noexcept(noexcept(x.swap(y)));
20
 
 
21
  template<class T, class Allocator, class U>
22
  typename deque<T, Allocator>::size_type
23
  erase(deque<T, Allocator>& c, const U& value);
24
  template<class T, class Allocator, class Predicate>
25
  typename deque<T, Allocator>::size_type
 
16
 
17
  template<class T, class Allocator>
18
  void swap(deque<T, Allocator>& x, deque<T, Allocator>& y)
19
  noexcept(noexcept(x.swap(y)));
20
 
21
+ // [deque.erasure], erasure
22
  template<class T, class Allocator, class U>
23
  typename deque<T, Allocator>::size_type
24
  erase(deque<T, Allocator>& c, const U& value);
25
  template<class T, class Allocator, class Predicate>
26
  typename deque<T, Allocator>::size_type