1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on
* the source.
*/
/**
* @file
*
* @brief Macros to abstract compiler capabilities for the MSVC toolchain
*
* @internal
* This file should never be included directly; instead, one should
* include toolchain.h which will pull in the file appropriate to
* the detected toolchain.
*/
#if defined(_MSC_VER)
#include <sal.h>
#define SCP_FORMAT_STRING _Printf_format_string_
#define SCP_FORMAT_STRING_ARGS(x,y)
#define __attribute__(x)
#define __UNUSED
#define __ALIGNED(x) __declspec(align(x))
#ifdef NO_RESTRICT_USE
# define RESTRICT
#elif _MSC_VER >= 1400
# define RESTRICT __restrict
#else
# define RESTRICT
#endif
#define ASSUME(x)
#if defined(NDEBUG)
# define Assertion(expr, msg, ...) do { ASSUME(expr); (void)sizeof(expr); } while (false)
#else
# define Assertion(expr, msg, ...) \
do { \
if (!(expr)) { \
os::dialogs::AssertMessage(#expr, __FILE__, __LINE__, msg, __VA_ARGS__); \
} \
} while (false)
#endif
/* C++11 Standard Detection */
#if !defined(HAVE_CXX11)
/* Use the Visual Studio version to detect C++11 support */
# if _MSC_VER >= 1600
# define HAVE_CXX11
# endif
#endif
#define SIZE_T_ARG "%Iu"
#define PTRDIFF_T_ARG "%Id"
#define likely(x) (x)
#define unlikely(x) (x)
#define USED_VARIABLE
#define FALLTHROUGH
#define CLANG_ANALYZER_NORETURN
#ifndef NDEBUG
#define UNREACHABLE(msg, ...) \
do { \
os::dialogs::Error(__FILE__, __LINE__, msg, ##__VA_ARGS__); \
} while (false)
#else
#define UNREACHABLE(msg, ...) __assume(false)
#endif
/**
* @brief Suppresses all warnings and allows to pop back to normal afterwards
*/
#define PUSH_SUPPRESS_WARNINGS \
__pragma(warning( push )) \
__pragma(warning( disable : 4244 )) \
__pragma(warning( disable : 4505 )) \
__pragma(warning( disable : 4189 ))
/**
* @brief Restored previous warning settings
*/
#define POP_SUPPRESS_WARNINGS \
__pragma(warning( pop ))
#endif
|