]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fusion/include/boost/fusion/container/map/detail/map_index.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fusion / include / boost / fusion / container / map / detail / map_index.hpp
1 /*=============================================================================
2 Copyright (c) 2005-2013 Joel de Guzman
3
4 Distributed under the Boost Software License, Version 1.0. (See accompanying
5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #if !defined(BOOST_FUSION_MAP_INDEX_02032013_2233)
8 #define BOOST_FUSION_MAP_INDEX_02032013_2233
9
10 namespace boost { namespace fusion { namespace detail
11 {
12 template <int N>
13 struct map_index
14 {
15 static int const value = N;
16 };
17 }}}
18
19 #endif