os/ossrv/ossrv_pub/boost_apis/boost/static_warning.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_STATIC_WARNING_HPP
sl@0
     2
#define BOOST_STATIC_WARNING_HPP
sl@0
     3
sl@0
     4
//  (C) Copyright Robert Ramey 2003. Jonathan Turkanis 2004.
sl@0
     5
// Use, modification and distribution is subject to the Boost Software
sl@0
     6
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     7
// MS compatible compilers support #pragma once
sl@0
     8
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     9
# pragma once
sl@0
    10
#endif
sl@0
    11
sl@0
    12
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    13
sl@0
    14
//  See http://www.boost.org/libs/static_assert for documentation.
sl@0
    15
sl@0
    16
/*
sl@0
    17
 Revision history:
sl@0
    18
   15 June  2003 - Initial version.
sl@0
    19
   31 March 2004 - improved diagnostic messages and portability 
sl@0
    20
                   (Jonathan Turkanis)
sl@0
    21
   03 April 2004 - works on VC6 at class and namespace scope
sl@0
    22
                 - ported to DigitalMars
sl@0
    23
                 - static warnings disabled by default; when enabled,
sl@0
    24
                   uses pragmas to enable required compiler warnings
sl@0
    25
                   on MSVC, Intel, Metrowerks and Borland 5.x.
sl@0
    26
                   (Jonathan Turkanis)
sl@0
    27
   30 May 2004   - tweaked for msvc 7.1 and gcc 3.3
sl@0
    28
                 - static warnings ENabled by default; when enabled,
sl@0
    29
                   (Robert Ramey)
sl@0
    30
*/
sl@0
    31
sl@0
    32
#include <boost/config.hpp>
sl@0
    33
sl@0
    34
//
sl@0
    35
// Implementation
sl@0
    36
// Makes use of the following warnings:
sl@0
    37
//  1. GCC prior to 3.3: division by zero.
sl@0
    38
//  2. BCC 6.0 preview: unreferenced local variable.
sl@0
    39
//  3. DigitalMars: returning address of local automatic variable.
sl@0
    40
//  4. VC6: class previously seen as struct (as in 'boost/mpl/print.hpp')
sl@0
    41
//  5. All others: deletion of pointer to incomplete type.
sl@0
    42
//
sl@0
    43
// The trick is to find code which produces warnings containing the name of
sl@0
    44
// a structure or variable. Details, with same numbering as above:
sl@0
    45
// 1. static_warning_impl<B>::value is zero iff B is false, so diving an int
sl@0
    46
//    by this value generates a warning iff B is false.
sl@0
    47
// 2. static_warning_impl<B>::type has a constructor iff B is true, so an
sl@0
    48
//    unreferenced variable of this type generates a warning iff B is false.
sl@0
    49
// 3. static_warning_impl<B>::type overloads operator& to return a dynamically
sl@0
    50
//    allocated int pointer only is B is true, so  returning the address of an
sl@0
    51
//    automatic variable of this type generates a warning iff B is fasle.
sl@0
    52
// 4. static_warning_impl<B>::STATIC_WARNING is decalred as a struct iff B is 
sl@0
    53
//    false. 
sl@0
    54
// 5. static_warning_impl<B>::type is incomplete iff B is false, so deleting a
sl@0
    55
//    pointer to this type generates a warning iff B is false.
sl@0
    56
//
sl@0
    57
sl@0
    58
//------------------Enable selected warnings----------------------------------//
sl@0
    59
sl@0
    60
// Enable the warnings relied on by BOOST_STATIC_WARNING, where possible. The 
sl@0
    61
// only pragma which is absolutely necessary here is for Borland 5.x, since 
sl@0
    62
// W8073 is disabled by default. If enabling selected warnings is considered 
sl@0
    63
// unacceptable, this section can be replaced with:
sl@0
    64
//   #if defined(__BORLANDC__) && (__BORLANDC__ <= 0x600)
sl@0
    65
//    pragma warn +stu
sl@0
    66
//   #endif
sl@0
    67
sl@0
    68
# if defined(BOOST_MSVC)
sl@0
    69
#  pragma warning(2:4150) // C4150: deletion of pointer to incomplete type 'type'.
sl@0
    70
# elif defined(BOOST_INTEL) && (defined(__WIN32__) || defined(WIN32))
sl@0
    71
#  pragma warning(2:457) // #457: delete of pointer to incomplete class.
sl@0
    72
# elif defined(__BORLANDC__) && (__BORLANDC__ <= 0x600)
sl@0
    73
#  pragma warn +stu  // W8073: Undefined structure 'structure'.
sl@0
    74
# elif defined(__MWERKS__)
sl@0
    75
#  pragma extended_errorcheck on // Enable 'extended error checking'.
sl@0
    76
# endif
sl@0
    77
sl@0
    78
//------------------Configure-------------------------------------------------//
sl@0
    79
sl@0
    80
# if defined(__BORLANDC__) && (__BORLANDC__ >= 0x600)
sl@0
    81
#  define BOOST_HAS_DESCRIPTIVE_UNREFERENCED_VARIABLE_WARNING
sl@0
    82
# elif defined(__GNUC__) && !defined(BOOST_INTEL) // && (__GNUC__ * 100 + __GNUC_MINOR__ <= 302)
sl@0
    83
#  define BOOST_HAS_DESCRIPTIVE_DIVIDE_BY_ZERO_WARNING
sl@0
    84
# elif defined(__DMC__)
sl@0
    85
#  define BOOST_HAS_DESCRIPTIVE_RETURNING_ADDRESS_OF_TEMPORARY_WARNING
sl@0
    86
# elif defined(BOOST_MSVC) // && (BOOST_MSVC < 1300)
sl@0
    87
#  define BOOST_NO_PREDEFINED_LINE_MACRO
sl@0
    88
#  pragma warning(disable:4094) // C4094: untagged 'stuct' declared no symbols
sl@0
    89
#endif
sl@0
    90
sl@0
    91
//------------------Helper templates------------------------------------------//
sl@0
    92
sl@0
    93
namespace boost {
sl@0
    94
sl@0
    95
struct STATIC_WARNING;
sl@0
    96
sl@0
    97
template<bool>
sl@0
    98
struct static_warning_impl;
sl@0
    99
sl@0
   100
template<>
sl@0
   101
struct static_warning_impl<false> {
sl@0
   102
    enum { value = 0 };
sl@0
   103
    #if !defined(BOOST_HAS_DESCRIPTIVE_UNREFERENCED_VARIABLE_WARNING) && \
sl@0
   104
        !defined(BOOST_HAS_DESCRIPTIVE_RETURNING_ADDRESS_OF_TEMPORARY_WARNING)
sl@0
   105
        typedef boost::STATIC_WARNING type;
sl@0
   106
    #else
sl@0
   107
        typedef int type;
sl@0
   108
    #endif
sl@0
   109
    #if defined(BOOST_NO_PREDEFINED_LINE_MACRO)
sl@0
   110
        struct STATIC_WARNING { };
sl@0
   111
    #endif
sl@0
   112
};
sl@0
   113
sl@0
   114
template<>
sl@0
   115
struct static_warning_impl<true> {
sl@0
   116
    enum { value = 1 };
sl@0
   117
    struct type { type() { } int* operator&() { return new int; } };
sl@0
   118
    #if defined(BOOST_NO_PREDEFINED_LINE_MACRO)
sl@0
   119
        class STATIC_WARNING { };
sl@0
   120
    #endif
sl@0
   121
};
sl@0
   122
sl@0
   123
} // namespace boost
sl@0
   124
sl@0
   125
//------------------Definition of BOOST_STATIC_WARNING------------------------//
sl@0
   126
sl@0
   127
#if defined(BOOST_HAS_DESCRIPTIVE_UNREFERENCED_VARIABLE_WARNING)
sl@0
   128
#    define BOOST_STATIC_WARNING_IMPL(B)                   \
sl@0
   129
     struct BOOST_JOIN(STATIC_WARNING, __LINE__) {         \
sl@0
   130
       void f() {                                          \
sl@0
   131
           ::boost::static_warning_impl<(bool)( B )>::type \
sl@0
   132
           STATIC_WARNING;                                 \
sl@0
   133
       }                                                   \
sl@0
   134
     }                                                     \
sl@0
   135
     /**/
sl@0
   136
#elif defined(BOOST_HAS_DESCRIPTIVE_RETURNING_ADDRESS_OF_TEMPORARY_WARNING)
sl@0
   137
#    define BOOST_STATIC_WARNING_IMPL(B)                        \
sl@0
   138
     struct BOOST_JOIN(STATIC_WARNING, __LINE__) {              \
sl@0
   139
        int* f() {                                              \
sl@0
   140
            ::boost::static_warning_impl<(bool)( B )>::type     \
sl@0
   141
            STATIC_WARNING;                                     \
sl@0
   142
            return &STATIC_WARNING;                             \
sl@0
   143
        }                                                       \
sl@0
   144
     }                                                          \
sl@0
   145
     /**/
sl@0
   146
#elif defined(BOOST_HAS_DESCRIPTIVE_DIVIDE_BY_ZERO_WARNING)
sl@0
   147
#    define BOOST_STATIC_WARNING_IMPL(B)                             \
sl@0
   148
     struct BOOST_JOIN(STATIC_WARNING, __LINE__) {                   \
sl@0
   149
         int f() { int STATIC_WARNING = 1;                           \
sl@0
   150
                   return STATIC_WARNING /                           \
sl@0
   151
                   boost::static_warning_impl<(bool)( B )>::value; } \
sl@0
   152
     }                                                               \
sl@0
   153
     /**/
sl@0
   154
#elif defined(BOOST_NO_PREDEFINED_LINE_MACRO) 
sl@0
   155
     // VC6; __LINE__ macro broken when -ZI is used see Q199057, so 
sl@0
   156
     // non-conforming workaround is used.
sl@0
   157
#    define BOOST_STATIC_WARNING_IMPL(B)                       \
sl@0
   158
     struct {                                                  \
sl@0
   159
        struct S {                                             \
sl@0
   160
            typedef boost::static_warning_impl<(bool)( B )> f; \
sl@0
   161
            friend class f::STATIC_WARNING;                    \
sl@0
   162
        };                                                     \
sl@0
   163
     }                                                         \
sl@0
   164
     /**/
sl@0
   165
#else // Deletion of pointer to incomplete type.
sl@0
   166
#    define BOOST_STATIC_WARNING_IMPL(B)                     \
sl@0
   167
     struct BOOST_JOIN(STATIC_WARNING, __LINE__) {           \
sl@0
   168
         ::boost::static_warning_impl<(bool)( B )>::type* p; \
sl@0
   169
         void f() { delete p; }                              \
sl@0
   170
     }                                                       \
sl@0
   171
     /**/
sl@0
   172
#endif
sl@0
   173
sl@0
   174
#ifndef BOOST_DISABLE_STATIC_WARNINGS
sl@0
   175
# define BOOST_STATIC_WARNING(B) BOOST_STATIC_WARNING_IMPL(B)
sl@0
   176
#else // #ifdef BOOST_ENABLE_STATIC_WARNINGS //-------------------------------//
sl@0
   177
# define BOOST_STATIC_WARNING(B) BOOST_STATIC_WARNING_IMPL(true)
sl@0
   178
#endif
sl@0
   179
sl@0
   180
#endif // BOOST_STATIC_WARNING_HPP