comparison DEPENDENCIES/generic/include/boost/thread/csbl/vector.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 // Copyright (C) 2013 Vicente J. Botet Escriba
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //
6 // 2013/10 Vicente J. Botet Escriba
7 // Creation.
8
9 #ifndef BOOST_CSBL_VECTOR_HPP
10 #define BOOST_CSBL_VECTOR_HPP
11
12 #include <boost/config.hpp>
13
14 #if defined BOOST_THREAD_USES_BOOST_VECTOR || defined BOOST_NO_CXX11_RVALUE_REFERENCES || defined BOOST_MSVC
15 #ifndef BOOST_THREAD_USES_BOOST_VECTOR
16 #define BOOST_THREAD_USES_BOOST_VECTOR
17 #endif
18 #include <boost/container/vector.hpp>
19 #else
20 #include <vector>
21 #endif
22
23 namespace boost
24 {
25 namespace csbl
26 {
27 #if defined BOOST_THREAD_USES_BOOST_VECTOR
28 using ::boost::container::vector;
29 #else
30 using ::std::vector;
31 #endif
32
33 }
34 }
35 #endif // header