blob: af5313bee4f59ad13d10ab90b655b3db1c136e05 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED
3#define NDNBOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2001-2004
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: msvc_eti_base.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/aux_/is_msvc_eti_arg.hpp>
18#include <ndnboost/mpl/aux_/config/eti.hpp>
19#include <ndnboost/mpl/aux_/config/gcc.hpp>
20#include <ndnboost/mpl/aux_/config/workaround.hpp>
21
22namespace ndnboost { namespace mpl { namespace aux {
23
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024#if defined(NDNBOOST_MPL_CFG_MSVC_70_ETI_BUG)
Jeff Thompsona28eed82013-08-22 16:21:10 -070025
26template< bool > struct msvc_eti_base_impl
27{
28 template< typename T > struct result_
29 : T
30 {
31 typedef T type;
32 };
33};
34
35template<> struct msvc_eti_base_impl<true>
36{
37 template< typename T > struct result_
38 {
39 typedef result_ type;
40 typedef result_ first;
41 typedef result_ second;
42 typedef result_ tag;
43 enum { value = 0 };
44 };
45};
46
47template< typename T > struct msvc_eti_base
48 : msvc_eti_base_impl< is_msvc_eti_arg<T>::value >
49 ::template result_<T>
50{
51};
52
Jeff Thompson3d613fd2013-10-15 15:39:04 -070053#else // !NDNBOOST_MPL_CFG_MSVC_70_ETI_BUG
Jeff Thompsona28eed82013-08-22 16:21:10 -070054
55template< typename T > struct msvc_eti_base
56 : T
57{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070058#if NDNBOOST_WORKAROUND(NDNBOOST_MPL_CFG_GCC, NDNBOOST_TESTED_AT(0x0304))
Jeff Thompsona28eed82013-08-22 16:21:10 -070059 msvc_eti_base();
60#endif
61 typedef T type;
62};
63
64#endif
65
66template<> struct msvc_eti_base<int>
67{
68 typedef msvc_eti_base type;
69 typedef msvc_eti_base first;
70 typedef msvc_eti_base second;
71 typedef msvc_eti_base tag;
72 enum { value = 0 };
73};
74
75}}}
76
Jeff Thompson3d613fd2013-10-15 15:39:04 -070077#endif // NDNBOOST_MPL_AUX_MSVC_ETI_BASE_HPP_INCLUDED