Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/iterator/test/interoperable_fail.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 598 bytes
Line 
1// Copyright Thomas Witt 2003.
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5#include <boost/iterator/indirect_iterator.hpp>
6#include <boost/iterator/reverse_iterator.hpp>
7#include <boost/concept_check.hpp>
8#include <boost/cstdlib.hpp>
9#include <list>
10
11int main()
12{
13  {
14    typedef boost::reverse_iterator<std::list<int*>::iterator>   rev_iter;
15    typedef boost::indirect_iterator<std::list<int*>::iterator>  ind_iter;
16
17    ind_iter() == rev_iter();
18  }
19
20  return boost::exit_success;
21}
Note: See TracBrowser for help on using the repository browser.