2014-05-19 19:57:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Two Blue Cubes Ltd
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __clang__
|
2015-03-04 08:54:35 +01:00
|
|
|
# ifdef __ICC // icpc defines the __clang__ macro
|
|
|
|
# pragma warning(push)
|
|
|
|
# pragma warning(disable: 161 1682)
|
|
|
|
# else // __ICC
|
2017-11-29 18:01:00 +01:00
|
|
|
# pragma clang diagnostic push
|
2015-03-04 08:54:35 +01:00
|
|
|
# pragma clang diagnostic ignored "-Wpadded"
|
2015-05-21 07:15:53 +02:00
|
|
|
# pragma clang diagnostic ignored "-Wswitch-enum"
|
2015-11-02 07:14:52 +01:00
|
|
|
# pragma clang diagnostic ignored "-Wcovered-switch-default"
|
2015-03-04 08:54:35 +01:00
|
|
|
# endif
|
2014-07-27 15:16:10 +02:00
|
|
|
#elif defined __GNUC__
|
2019-01-25 21:29:12 +01:00
|
|
|
// Because REQUIREs trigger GCC's -Wparentheses, and because still
|
|
|
|
// supported version of g++ have only buggy support for _Pragmas,
|
|
|
|
// Wparentheses have to be suppressed globally.
|
|
|
|
# pragma GCC diagnostic ignored "-Wparentheses" // See #674 for details
|
|
|
|
|
2017-11-29 18:19:50 +01:00
|
|
|
# pragma GCC diagnostic push
|
2017-11-09 23:50:49 +01:00
|
|
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
2015-03-04 08:54:35 +01:00
|
|
|
# pragma GCC diagnostic ignored "-Wpadded"
|
2014-05-19 19:57:14 +02:00
|
|
|
#endif
|