-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathcompiler.h
More file actions
73 lines (64 loc) · 3.17 KB
/
compiler.h
File metadata and controls
73 lines (64 loc) · 3.17 KB
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
// Copyright (c) 2025 Vector 35 Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
#pragma once
// Compiler-related defines
// BN_DEPRECATED(msg) or BN_DEPRECATED(msg, replacement)
//
// Marks a declaration as deprecated with a message and optional replacement.
//
// For Clang with a replacement, expands to __attribute__((deprecated(msg, replacement)))
// which provides both the deprecation message and a fix-it hint for the replacement.
//
// Otherwise, expands to [[deprecated(msg)]].
#define __BN_DEPRECATED_WITH_MESSAGE(msg) [[deprecated(msg)]]
#if defined(__clang__)
#define __BN_DEPRECATED_WITH_REPLACEMENT(msg, replacement) __attribute__((deprecated(msg, replacement)))
#else
#define __BN_DEPRECATED_WITH_REPLACEMENT(msg, replacement) [[deprecated(msg)]]
#endif
#define __BN_DEPRECATED_GET_MACRO(_1, _2, NAME, ...) NAME
#define __BN_DEPRECATED_EXPAND(x) x
#define BN_DEPRECATED(...) __BN_DEPRECATED_EXPAND(__BN_DEPRECATED_GET_MACRO(__VA_ARGS__, __BN_DEPRECATED_WITH_REPLACEMENT, __BN_DEPRECATED_WITH_MESSAGE)(__VA_ARGS__))
// BN_IGNORE_WARNINGS_BEGIN(gcc_warning, msvc_num) / BN_IGNORE_WARNINGS_END
//
// Suppresses a specific warning within a block of code.
//
// gcc_warning: A GCC/Clang warning flag as a string, e.g. "-Wdeprecated-declarations"
// msvc_num: An MSVC warning number, e.g. 4996
#if defined(_MSC_VER)
#define BN_IGNORE_WARNINGS_BEGIN(gcc_warning, msvc_num) \
__pragma(warning(push)) \
__pragma(warning(disable: msvc_num))
#define BN_IGNORE_WARNINGS_END __pragma(warning(pop))
#elif defined(__clang__) || defined(__GNUC__)
#define __BN_PRAGMA(x) _Pragma(#x)
#define BN_IGNORE_WARNINGS_BEGIN(gcc_warning, msvc_num) \
_Pragma("GCC diagnostic push") \
__BN_PRAGMA(GCC diagnostic ignored gcc_warning)
#define BN_IGNORE_WARNINGS_END _Pragma("GCC diagnostic pop")
#else
#define BN_IGNORE_WARNINGS_BEGIN(gcc_warning, msvc_num)
#define BN_IGNORE_WARNINGS_END
#endif
// BN_IGNORE_DEPRECATION_WARNINGS_BEGIN / BN_IGNORE_DEPRECATION_WARNINGS_END
//
// Suppresses deprecation warnings within a block of code.
#define BN_IGNORE_DEPRECATION_WARNINGS_BEGIN BN_IGNORE_WARNINGS_BEGIN("-Wdeprecated-declarations", 4996)
#define BN_IGNORE_DEPRECATION_WARNINGS_END BN_IGNORE_WARNINGS_END