Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/container/detail/iterator.hpp @ 102:f46d142149f5
Whoops, finish that update
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:13:41 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
101:c530137014c0 | 102:f46d142149f5 |
---|---|
1 ////////////////////////////////////////////////////////////////////////////// | |
2 // | |
3 // (C) Copyright Ion Gaztanaga 2014-2014. | |
4 // | |
5 // Distributed under the Boost Software License, Version 1.0. | |
6 // (See accompanying file LICENSE_1_0.txt or copy at | |
7 // http://www.boost.org/LICENSE_1_0.txt) | |
8 // | |
9 // See http://www.boost.org/libs/container for documentation. | |
10 // | |
11 ////////////////////////////////////////////////////////////////////////////// | |
12 | |
13 #ifndef BOOST_CONTAINER_DETAIL_ITERATOR_HPP | |
14 #define BOOST_CONTAINER_DETAIL_ITERATOR_HPP | |
15 | |
16 #ifndef BOOST_CONFIG_HPP | |
17 # include <boost/config.hpp> | |
18 #endif | |
19 | |
20 #if defined(BOOST_HAS_PRAGMA_ONCE) | |
21 # pragma once | |
22 #endif | |
23 | |
24 #include <boost/intrusive/detail/iterator.hpp> | |
25 | |
26 namespace boost { | |
27 namespace container { | |
28 | |
29 using ::boost::intrusive::iterator_traits; | |
30 using ::boost::intrusive::iterator_distance; | |
31 using ::boost::intrusive::iterator_advance; | |
32 using ::boost::intrusive::iterator; | |
33 using ::boost::intrusive::iterator_enable_if_tag; | |
34 using ::boost::intrusive::iterator_disable_if_tag; | |
35 | |
36 } //namespace container { | |
37 } //namespace boost { | |
38 | |
39 #endif //#ifndef BOOST_CONTAINER_DETAIL_ITERATORS_HPP |