blob: f8150285dafc23cff793f7dc20efd1021912be3d [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001// (C) Copyright John Maddock 2000.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6// See http://www.boost.org/libs/static_assert for documentation.
7
8/*
9 Revision history:
10 02 August 2000
11 Initial version.
12*/
13
Jeff Thompson3d613fd2013-10-15 15:39:04 -070014#ifndef NDNBOOST_STATIC_ASSERT_HPP
15#define NDNBOOST_STATIC_ASSERT_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -070016
Jeff Thompson2277ce52013-08-01 17:34:11 -070017#include <ndnboost/config.hpp>
18#include <ndnboost/detail/workaround.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070019
20#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
21//
22// This is horrible, but it seems to be the only we can shut up the
23// "anonymous variadic macros were introduced in C99 [-Wvariadic-macros]"
24// warning that get spewed out otherwise in non-C++11 mode.
25//
26#pragma GCC system_header
27#endif
28
Jeff Thompson3d613fd2013-10-15 15:39:04 -070029#ifndef NDNBOOST_NO_CXX11_STATIC_ASSERT
30# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
31# define NDNBOOST_STATIC_ASSERT_MSG( ... ) static_assert(__VA_ARGS__)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070032# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070033# define NDNBOOST_STATIC_ASSERT_MSG( B, Msg ) NDNBOOST_STATIC_ASSERT( B )
Jeff Thompsonf7d49942013-08-01 16:47:40 -070034# endif
35#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070036# define NDNBOOST_STATIC_ASSERT_MSG( B, Msg ) NDNBOOST_STATIC_ASSERT( B )
Jeff Thompsonf7d49942013-08-01 16:47:40 -070037#endif
38
39#ifdef __BORLANDC__
40//
41// workaround for buggy integral-constant expression support:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070042#define NDNBOOST_BUGGY_INTEGRAL_CONSTANT_EXPRESSIONS
Jeff Thompsonf7d49942013-08-01 16:47:40 -070043#endif
44
45#if defined(__GNUC__) && (__GNUC__ == 3) && ((__GNUC_MINOR__ == 3) || (__GNUC_MINOR__ == 4))
46// gcc 3.3 and 3.4 don't produce good error messages with the default version:
Jeff Thompson3d613fd2013-10-15 15:39:04 -070047# define NDNBOOST_SA_GCC_WORKAROUND
Jeff Thompsonf7d49942013-08-01 16:47:40 -070048#endif
49
50//
51// If the compiler issues warnings about old C style casts,
52// then enable this:
53//
54#if defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4)))
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
56# define NDNBOOST_STATIC_ASSERT_BOOL_CAST( ... ) ((__VA_ARGS__) == 0 ? false : true)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070057# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070058# define NDNBOOST_STATIC_ASSERT_BOOL_CAST( x ) ((x) == 0 ? false : true)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070059# endif
60#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070061# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
62# define NDNBOOST_STATIC_ASSERT_BOOL_CAST( ... ) (bool)(__VA_ARGS__)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070063# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070064# define NDNBOOST_STATIC_ASSERT_BOOL_CAST(x) (bool)(x)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070065# endif
66#endif
67//
68// If the compiler warns about unused typedefs then enable this:
69//
70#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)))
Jeff Thompson3d613fd2013-10-15 15:39:04 -070071# define NDNBOOST_STATIC_ASSERT_UNUSED_ATTRIBUTE __attribute__((unused))
Jeff Thompsonf7d49942013-08-01 16:47:40 -070072#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070073# define NDNBOOST_STATIC_ASSERT_UNUSED_ATTRIBUTE
Jeff Thompsonf7d49942013-08-01 16:47:40 -070074#endif
75
Jeff Thompson3d613fd2013-10-15 15:39:04 -070076#ifndef NDNBOOST_NO_CXX11_STATIC_ASSERT
77# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
78# define NDNBOOST_STATIC_ASSERT( ... ) static_assert(__VA_ARGS__, #__VA_ARGS__)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070079# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070080# define NDNBOOST_STATIC_ASSERT( B ) static_assert(B, #B)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070081# endif
82#else
83
84namespace ndnboost{
85
86// HP aCC cannot deal with missing names for template value parameters
87template <bool x> struct STATIC_ASSERTION_FAILURE;
88
89template <> struct STATIC_ASSERTION_FAILURE<true> { enum { value = 1 }; };
90
91// HP aCC cannot deal with missing names for template value parameters
92template<int x> struct static_assert_test{};
93
94}
95
96//
97// Implicit instantiation requires that all member declarations be
98// instantiated, but that the definitions are *not* instantiated.
99//
100// It's not particularly clear how this applies to enum's or typedefs;
101// both are described as declarations [7.1.3] and [7.2] in the standard,
102// however some compilers use "delayed evaluation" of one or more of
103// these when implicitly instantiating templates. We use typedef declarations
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700104// by default, but try defining NDNBOOST_USE_ENUM_STATIC_ASSERT if the enum
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700105// version gets better results from your compiler...
106//
107// Implementation:
108// Both of these versions rely on sizeof(incomplete_type) generating an error
109// message containing the name of the incomplete type. We use
110// "STATIC_ASSERTION_FAILURE" as the type name here to generate
111// an eye catching error message. The result of the sizeof expression is either
112// used as an enum initialiser, or as a template argument depending which version
113// is in use...
114// Note that the argument to the assert is explicitly cast to bool using old-
115// style casts: too many compilers currently have problems with static_cast
116// when used inside integral constant expressions.
117//
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700118#if !defined(NDNBOOST_BUGGY_INTEGRAL_CONSTANT_EXPRESSIONS)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700119
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700120#if defined(NDNBOOST_MSVC) && (NDNBOOST_MSVC < 1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700121// __LINE__ macro broken when -ZI is used see Q199057
122// fortunately MSVC ignores duplicate typedef's.
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700123#define NDNBOOST_STATIC_ASSERT( B ) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700124 typedef ::ndnboost::static_assert_test<\
125 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< (bool)( B ) >)\
126 > boost_static_assert_typedef_
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700127#elif defined(NDNBOOST_MSVC) && defined(NDNBOOST_NO_CXX11_VARIADIC_MACROS)
128#define NDNBOOST_STATIC_ASSERT( B ) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700129 typedef ::ndnboost::static_assert_test<\
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700130 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST ( B ) >)>\
131 NDNBOOST_JOIN(boost_static_assert_typedef_, __COUNTER__)
132#elif defined(NDNBOOST_MSVC)
133#define NDNBOOST_STATIC_ASSERT(...) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700134 typedef ::ndnboost::static_assert_test<\
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700135 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST (__VA_ARGS__) >)>\
136 NDNBOOST_JOIN(boost_static_assert_typedef_, __COUNTER__)
137#elif (defined(NDNBOOST_INTEL_CXX_VERSION) || defined(NDNBOOST_SA_GCC_WORKAROUND)) && defined(NDNBOOST_NO_CXX11_VARIADIC_MACROS)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700138// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error
139// instead of warning in case of failure
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700140# define NDNBOOST_STATIC_ASSERT( B ) \
141 typedef char NDNBOOST_JOIN(boost_static_assert_typedef_, __LINE__) \
142 [ ::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST( B ) >::value ]
143#elif (defined(NDNBOOST_INTEL_CXX_VERSION) || defined(NDNBOOST_SA_GCC_WORKAROUND)) && !defined(NDNBOOST_NO_CXX11_VARIADIC_MACROS)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700144// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error
145// instead of warning in case of failure
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700146# define NDNBOOST_STATIC_ASSERT(...) \
147 typedef char NDNBOOST_JOIN(boost_static_assert_typedef_, __LINE__) \
148 [ ::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST( __VA_ARGS__ ) >::value ]
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700149#elif defined(__sgi)
150// special version for SGI MIPSpro compiler
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700151#define NDNBOOST_STATIC_ASSERT( B ) \
152 NDNBOOST_STATIC_CONSTANT(bool, \
153 NDNBOOST_JOIN(boost_static_assert_test_, __LINE__) = ( B )); \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700154 typedef ::ndnboost::static_assert_test<\
155 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700156 NDNBOOST_JOIN(boost_static_assert_test_, __LINE__) >)>\
157 NDNBOOST_JOIN(boost_static_assert_typedef_, __LINE__)
158#elif NDNBOOST_WORKAROUND(__MWERKS__, <= 0x3003)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700159// special version for CodeWarrior <= 8.x
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700160#define NDNBOOST_STATIC_ASSERT( B ) \
161 NDNBOOST_STATIC_CONSTANT(int, \
162 NDNBOOST_JOIN(boost_static_assert_test_, __LINE__) = \
163 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST( B ) >) )
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700164#else
165// generic version
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700166# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
167# define NDNBOOST_STATIC_ASSERT( ... ) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700168 typedef ::ndnboost::static_assert_test<\
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700169 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST( __VA_ARGS__ ) >)>\
170 NDNBOOST_JOIN(boost_static_assert_typedef_, __LINE__) NDNBOOST_STATIC_ASSERT_UNUSED_ATTRIBUTE
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700171# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700172# define NDNBOOST_STATIC_ASSERT( B ) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700173 typedef ::ndnboost::static_assert_test<\
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700174 sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< NDNBOOST_STATIC_ASSERT_BOOL_CAST( B ) >)>\
175 NDNBOOST_JOIN(boost_static_assert_typedef_, __LINE__) NDNBOOST_STATIC_ASSERT_UNUSED_ATTRIBUTE
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700176# endif
177#endif
178
179#else
180// alternative enum based implementation:
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700181# ifndef NDNBOOST_NO_CXX11_VARIADIC_MACROS
182# define NDNBOOST_STATIC_ASSERT( ... ) \
183 enum { NDNBOOST_JOIN(boost_static_assert_enum_, __LINE__) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700184 = sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< (bool)( __VA_ARGS__ ) >) }
185# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700186# define NDNBOOST_STATIC_ASSERT(B) \
187 enum { NDNBOOST_JOIN(boost_static_assert_enum_, __LINE__) \
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700188 = sizeof(::ndnboost::STATIC_ASSERTION_FAILURE< (bool)( B ) >) }
189# endif
190#endif
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700191#endif // defined(NDNBOOST_NO_CXX11_STATIC_ASSERT)
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700192
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700193#endif // NDNBOOST_STATIC_ASSERT_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -0700194
195