2022-01-28 15:56:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2022-01-28 15:56:11 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-09-04 20:59:49 +02:00
|
|
|
#ifndef configH
|
|
|
|
#define configH
|
2012-06-10 14:19:09 +02:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
# ifdef CPPCHECKLIB_EXPORT
|
|
|
|
# define CPPCHECKLIB __declspec(dllexport)
|
|
|
|
# elif defined(CPPCHECKLIB_IMPORT)
|
|
|
|
# define CPPCHECKLIB __declspec(dllimport)
|
|
|
|
# else
|
|
|
|
# define CPPCHECKLIB
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define CPPCHECKLIB
|
|
|
|
#endif
|
|
|
|
|
2014-03-26 16:43:12 +01:00
|
|
|
// MS Visual C++ memory leak debug tracing
|
2022-04-15 18:49:24 +02:00
|
|
|
#if !defined(DISABLE_CRTDBG_MAP_ALLOC) && defined(_MSC_VER) && defined(_DEBUG)
|
2014-03-26 16:43:12 +01:00
|
|
|
# define _CRTDBG_MAP_ALLOC
|
|
|
|
# include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
|
2020-02-13 16:27:06 +01:00
|
|
|
// C++11 noexcept
|
|
|
|
#if (defined(__GNUC__) && (__GNUC__ >= 5)) \
|
2021-08-07 20:51:18 +02:00
|
|
|
|| (defined(__clang__) && (defined (__cplusplus)) && (__cplusplus >= 201103L)) \
|
|
|
|
|| defined(__CPPCHECK__)
|
2020-02-13 16:27:06 +01:00
|
|
|
# define NOEXCEPT noexcept
|
|
|
|
#else
|
|
|
|
# define NOEXCEPT
|
|
|
|
#endif
|
|
|
|
|
2020-06-29 22:54:51 +02:00
|
|
|
// C++11 noreturn
|
|
|
|
#if (defined(__GNUC__) && (__GNUC__ >= 5)) \
|
2021-08-07 20:51:18 +02:00
|
|
|
|| (defined(__clang__) && (defined (__cplusplus)) && (__cplusplus >= 201103L)) \
|
|
|
|
|| defined(__CPPCHECK__)
|
2020-06-29 22:54:51 +02:00
|
|
|
# define NORETURN [[noreturn]]
|
|
|
|
#else
|
|
|
|
# define NORETURN
|
|
|
|
#endif
|
|
|
|
|
2021-01-21 18:13:32 +01:00
|
|
|
// fallthrough
|
|
|
|
#if defined(__clang__)
|
|
|
|
# define FALLTHROUGH [[clang::fallthrough]]
|
|
|
|
#elif (defined(__GNUC__) && (__GNUC__ >= 7))
|
|
|
|
# define FALLTHROUGH __attribute__((fallthrough))
|
|
|
|
#else
|
|
|
|
# define FALLTHROUGH
|
|
|
|
#endif
|
|
|
|
|
2020-02-13 16:27:06 +01:00
|
|
|
#define REQUIRES(msg, ...) class=typename std::enable_if<__VA_ARGS__::value>::type
|
|
|
|
|
2014-06-26 11:44:19 +02:00
|
|
|
#include <string>
|
|
|
|
static const std::string emptyString;
|
|
|
|
|
2022-02-11 19:44:08 +01:00
|
|
|
// Use the nonneg macro when you want to assert that a variable/argument is not negative
|
|
|
|
#ifdef __CPPCHECK__
|
|
|
|
#define nonneg __cppcheck_low__(0)
|
|
|
|
#elif defined(NONNEG)
|
|
|
|
// Enable non-negative values checking
|
|
|
|
// TODO : investigate using annotations/contracts for stronger value checking
|
|
|
|
#define nonneg unsigned
|
|
|
|
#else
|
|
|
|
// Disable non-negative values checking
|
|
|
|
#define nonneg
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__has_feature)
|
|
|
|
#if __has_feature(address_sanitizer)
|
|
|
|
#define ASAN 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ASAN
|
|
|
|
#ifdef __SANITIZE_ADDRESS__
|
|
|
|
#define ASAN 1
|
|
|
|
#else
|
|
|
|
#define ASAN 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2022-02-23 09:04:35 +01:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#define THREADING_MODEL_THREAD
|
|
|
|
#define STDCALL __stdcall
|
|
|
|
#elif defined(USE_THREADS)
|
|
|
|
#define THREADING_MODEL_THREAD
|
|
|
|
#define STDCALL
|
|
|
|
#elif ((defined(__GNUC__) || defined(__sun)) && !defined(__MINGW32__) && !defined(__CYGWIN__)) || defined(__CPPCHECK__)
|
|
|
|
#define THREADING_MODEL_FORK
|
|
|
|
#else
|
|
|
|
#error "No threading model defined"
|
|
|
|
#endif
|
|
|
|
|
2022-03-30 19:30:02 +02:00
|
|
|
#define STRINGISIZE(...) #__VA_ARGS__
|
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#define SUPPRESS_WARNING(warning, ...)_Pragma("clang diagnostic push") _Pragma(STRINGISIZE(clang diagnostic ignored warning)) __VA_ARGS__ _Pragma("clang diagnostic pop")
|
|
|
|
#define SUPPRESS_DEPRECATED_WARNING(...) SUPPRESS_WARNING("-Wdeprecated", __VA_ARGS__)
|
|
|
|
#define SUPPRESS_FLOAT_EQUAL_WARNING(...) SUPPRESS_WARNING("-Wfloat-equal", __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define SUPPRESS_DEPRECATED_WARNING(...) __VA_ARGS__
|
|
|
|
#define SUPPRESS_FLOAT_EQUAL_WARNING(...) __VA_ARGS__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-09-04 20:59:49 +02:00
|
|
|
#endif // configH
|