• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
20