diff options
author | rtk0c <[email protected]> | 2021-05-09 11:19:37 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-09 11:19:37 -0700 |
commit | 97758d5c47698339cfcb9037e477ff463f97b58a (patch) | |
tree | 2ee51bee8394a88c5045388b60e9283894f0142b /core/src/Utils | |
parent | 54bac64fdb909a239bf00b1450de1d1a55e58a37 (diff) |
Remove UNREACHABLE macros
Diffstat (limited to 'core/src/Utils')
-rw-r--r-- | core/src/Utils/Macros.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/src/Utils/Macros.hpp b/core/src/Utils/Macros.hpp index 3ba8261..658aebf 100644 --- a/core/src/Utils/Macros.hpp +++ b/core/src/Utils/Macros.hpp @@ -4,9 +4,3 @@ #define CONCAT(a, b) CONCAT_IMPL(a, b) #define UNIQUE_NAME(prefix) CONCAT(prefix, __COUNTER__) - -#if defined(_MSC_VER) -# define UNREACHABLE __assume(false) -#elif defined(__clang__) || defined(__GNUC__) -# define UUNREACHABLE __builtin_unreachable() -#endif |