// { dg-options "-std=gnu++11" } // { dg-do compile } // Copyright (C) 2016-2017 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . #include namespace std { // C++11 24.4.4, iterator operations: template void advance(InputIterator& i, Distance n); template typename iterator_traits::difference_type distance(InputIterator first, InputIterator last); template ForwardIterator next(ForwardIterator x, typename iterator_traits::difference_type); template BidirectionalIterator prev(BidirectionalIterator x, typename iterator_traits::difference_type); // C++11 24.5, Iterator adaptors: template class reverse_iterator; template bool operator==(const reverse_iterator& x, const reverse_iterator& y); template bool operator<(const reverse_iterator& x, const reverse_iterator& y); template bool operator!=(const reverse_iterator& x, const reverse_iterator& y); template bool operator>(const reverse_iterator& x, const reverse_iterator& y); template bool operator>=(const reverse_iterator& x, const reverse_iterator& y); template bool operator<=(const reverse_iterator& x, const reverse_iterator& y); template auto operator-(const reverse_iterator& x, const reverse_iterator& y) -> decltype(x.base() - y.base()); template reverse_iterator operator+(typename reverse_iterator::difference_type n, const reverse_iterator& x); template class back_insert_iterator; template back_insert_iterator back_inserter(Container& x); template class front_insert_iterator; template front_insert_iterator front_inserter(Container& x); template class insert_iterator; template insert_iterator inserter(Container& x, Iterator i); template class move_iterator; template bool operator==(const move_iterator& x, const move_iterator& y); template bool operator!=(const move_iterator& x, const move_iterator& y); template bool operator<(const move_iterator& x, const move_iterator& y); template bool operator<=(const move_iterator& x, const move_iterator& y); template bool operator>(const move_iterator& x, const move_iterator& y); template bool operator>=(const move_iterator& x, const move_iterator& y); template auto operator-(const move_iterator& x, const move_iterator& y) -> decltype(x.base() - y.base()); template move_iterator operator+(typename move_iterator::difference_type, const move_iterator&); template move_iterator make_move_iterator(const Iterator&); // 24.6, stream iterators: template class istream_iterator; template bool operator==(const istream_iterator& x, const istream_iterator& y); template bool operator!=(const istream_iterator& x, const istream_iterator& y); template class ostream_iterator; template class istreambuf_iterator; template bool operator==(const istreambuf_iterator&, const istreambuf_iterator&); template bool operator!=(const istreambuf_iterator&, const istreambuf_iterator&); template class ostreambuf_iterator; }