blob: 54a93eb4d569a4251d819aa2f4a20293d59d9041 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_AUX_IS_MSVC_ETI_ARG_HPP_INCLUDED
3#define NDNBOOST_MPL_AUX_IS_MSVC_ETI_ARG_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: is_msvc_eti_arg.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_/yes_no.hpp>
18#include <ndnboost/mpl/aux_/config/eti.hpp>
19#include <ndnboost/mpl/aux_/config/static_constant.hpp>
20
21namespace ndnboost { namespace mpl { namespace aux {
22
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023#if defined(NDNBOOST_MPL_CFG_MSVC_ETI_BUG)
Jeff Thompsona28eed82013-08-22 16:21:10 -070024
Jeff Thompson3d613fd2013-10-15 15:39:04 -070025#if defined(NDNBOOST_MPL_CFG_MSVC_60_ETI_BUG)
Jeff Thompsona28eed82013-08-22 16:21:10 -070026
27template< typename T >
28struct is_msvc_eti_arg
29{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030 NDNBOOST_STATIC_CONSTANT(bool, value = false);
Jeff Thompsona28eed82013-08-22 16:21:10 -070031};
32
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033#else // NDNBOOST_MPL_CFG_MSVC_60_ETI_BUG
Jeff Thompsona28eed82013-08-22 16:21:10 -070034
35struct eti_int_convertible
36{
37 eti_int_convertible(int);
38};
39
40template< typename T >
41struct is_msvc_eti_arg
42{
43 static no_tag test(...);
44 static yes_tag test(eti_int_convertible);
45 static T& get();
46
Jeff Thompson3d613fd2013-10-15 15:39:04 -070047 NDNBOOST_STATIC_CONSTANT(bool, value =
Jeff Thompsona28eed82013-08-22 16:21:10 -070048 sizeof(test(get())) == sizeof(yes_tag)
49 );
50};
51
52#endif
53
54template<>
55struct is_msvc_eti_arg<int>
56{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070057 NDNBOOST_STATIC_CONSTANT(bool, value = true);
Jeff Thompsona28eed82013-08-22 16:21:10 -070058};
59
Jeff Thompson3d613fd2013-10-15 15:39:04 -070060#endif // NDNBOOST_MPL_CFG_MSVC_ETI_BUG
Jeff Thompsona28eed82013-08-22 16:21:10 -070061
62}}}
63
Jeff Thompson3d613fd2013-10-15 15:39:04 -070064#endif // NDNBOOST_MPL_AUX_IS_MSVC_ETI_ARG_HPP_INCLUDED