fix doc example typo
[boost.git] / boost / tr1 / unordered_map.hpp
blob7dfa45be8a9322b45e8929213f877f2531f91cbf
1 // (C) Copyright John Maddock 2008.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 #ifndef BOOST_TR1_UNORDERED_MAP_HPP_INCLUDED
7 # define BOOST_TR1_UNORDERED_MAP_HPP_INCLUDED
8 # include <boost/tr1/detail/config.hpp>
10 #ifdef BOOST_HAS_TR1_UNORDERED_MAP
12 # ifdef BOOST_HAS_INCLUDE_NEXT
13 # include_next BOOST_TR1_HEADER(unordered_map)
14 # else
15 # include <boost/tr1/detail/config_all.hpp>
16 # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(unordered_map))
17 # endif
19 #else
21 #include <boost/unordered_map.hpp>
23 namespace std{ namespace tr1{
25 using ::boost::unordered_map;
26 using ::boost::unordered_multimap;
27 using ::boost::swap;
29 } } // namespaces
31 #endif
33 #endif