This is Unofficial EPICS BASE Doxygen Site
sp_convertible.hpp
Go to the documentation of this file.
1 #ifndef BOOST_SMART_PTR_DETAIL_SP_CONVERTIBLE_HPP_INCLUDED
2 #define BOOST_SMART_PTR_DETAIL_SP_CONVERTIBLE_HPP_INCLUDED
3 
4 // MS compatible compilers support #pragma once
5 
6 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
7 # pragma once
8 #endif
9 
10 // detail/sp_convertible.hpp
11 //
12 // Copyright 2008 Peter Dimov
13 //
14 // Distributed under the Boost Software License, Version 1.0.
15 // See accompanying file LICENSE_1_0.txt or copy at
16 // http://www.boost.org/LICENSE_1_0.txt
17 
18 #include <boost/config.hpp>
19 
20 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) && defined( BOOST_NO_SFINAE )
21 # define BOOST_SP_NO_SP_CONVERTIBLE
22 #endif
23 
24 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) && defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ < 303 )
25 # define BOOST_SP_NO_SP_CONVERTIBLE
26 #endif
27 
28 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE ) && defined( __BORLANDC__ ) && ( __BORLANDC__ < 0x630 )
29 # define BOOST_SP_NO_SP_CONVERTIBLE
30 #endif
31 
32 #if !defined( BOOST_SP_NO_SP_CONVERTIBLE )
33 
34 namespace boost
35 {
36 
37 namespace detail
38 {
39 
40 template< class Y, class T > struct sp_convertible
41 {
42  typedef char (&yes) [1];
43  typedef char (&no) [2];
44 
45  static yes f( T* );
46  static no f( ... );
47 
48  enum _vt { value = sizeof( (f)( static_cast<Y*>(0) ) ) == sizeof(yes) };
49 };
50 
51 template< class Y, class T > struct sp_convertible< Y, T[] >
52 {
53  enum _vt { value = false };
54 };
55 
56 template< class Y, class T > struct sp_convertible< Y[], T[] >
57 {
59 };
60 
61 template< class Y, std::size_t N, class T > struct sp_convertible< Y[N], T[] >
62 {
64 };
65 
66 struct sp_empty
67 {
68 };
69 
70 template< bool > struct sp_enable_if_convertible_impl;
71 
73 {
74  typedef sp_empty type;
75 };
76 
78 {
79 };
80 
81 template< class Y, class T > struct sp_enable_if_convertible: public sp_enable_if_convertible_impl< sp_convertible< Y, T >::value >
82 {
83 };
84 
85 } // namespace detail
86 
87 } // namespace boost
88 
89 #endif // !defined( BOOST_SP_NO_SP_CONVERTIBLE )
90 
91 #endif // #ifndef BOOST_SMART_PTR_DETAIL_SP_CONVERTIBLE_HPP_INCLUDED
Definition: link.h:174
Definition: assert.hpp:91
#define true
Definition: flexdef.h:84
#define false
Definition: flexdef.h:85