2015-04-18 04:33:39 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2015, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wall"
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
|
|
|
#pragma GCC diagnostic ignored "-Wswitch-enum"
|
|
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
|
|
|
#pragma GCC diagnostic ignored "-Wundef"
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-noreturn"
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated"
|
2015-05-05 07:37:01 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
2015-04-18 04:33:39 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wshadow"
|
2015-04-18 15:56:36 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
2016-05-30 20:33:24 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
2016-06-13 03:14:21 +02:00
|
|
|
#if __GNUC__ >= 6
|
|
|
|
#pragma GCC diagnostic ignored "-Wshift-overflow"
|
|
|
|
#pragma GCC diagnostic ignored "-Wshift-count-overflow"
|
|
|
|
#pragma GCC diagnostic ignored "-Wshift-count-negative"
|
|
|
|
#endif
|
2015-04-18 04:33:39 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
2015-04-24 07:37:17 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wall"
|
2015-04-18 04:33:39 +02:00
|
|
|
#pragma clang diagnostic ignored "-Weverything"
|
|
|
|
#pragma clang diagnostic ignored "-Wsign-conversion"
|
|
|
|
#pragma clang diagnostic ignored "-Wconversion"
|
|
|
|
#pragma clang diagnostic ignored "-Wswitch-enum"
|
|
|
|
#pragma clang diagnostic ignored "-Wcovered-switch-default"
|
|
|
|
#pragma clang diagnostic ignored "-Wold-style-cast"
|
|
|
|
#pragma clang diagnostic ignored "-Wundef"
|
|
|
|
#pragma clang diagnostic ignored "-Wweak-vtables"
|
|
|
|
#pragma clang diagnostic ignored "-Wmissing-noreturn"
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated"
|
2015-05-05 07:37:01 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
2015-04-18 04:33:39 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wcast-align"
|
|
|
|
#pragma clang diagnostic ignored "-Wweak-vtable"
|
|
|
|
#pragma clang diagnostic ignored "-Wundef"
|
|
|
|
#pragma clang diagnostic ignored "-Wshadow"
|
2015-04-22 06:24:45 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wimplicit-fallthrough"
|
2015-04-24 07:37:17 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wc++11-long-long"
|
|
|
|
#pragma clang diagnostic ignored "-Wc++11-extensions"
|
|
|
|
#pragma clang diagnostic ignored "-Wextra-semi"
|
2015-06-07 06:23:30 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wunused-parameter"
|
2015-12-14 01:44:42 +01:00
|
|
|
#pragma clang diagnostic ignored "-Wreserved-id-macro"
|
|
|
|
#pragma clang diagnostic ignored "-Wunused-local-typedef"
|
2016-05-30 20:33:24 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wgnu-folding-constant"
|
|
|
|
#pragma clang diagnostic ignored "-Wdouble-promotion"
|
|
|
|
#pragma clang diagnostic ignored "-Wfloat-equal"
|
2015-04-18 04:33:39 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
2016-05-02 18:36:21 +02:00
|
|
|
// warning C4005: macro redefinition
|
|
|
|
#pragma warning( disable : 4005 )
|
2015-04-18 04:33:39 +02:00
|
|
|
#endif
|
|
|
|
|