Remove unused macros (#1128)

This macro is a relic of the old implementation of GSL's header. It is unused and can be removed.
This commit is contained in:
Dmitry Kobets 2023-07-26 15:07:28 -07:00 committed by GitHub
parent b34f7350fe
commit 4300304ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,9 +55,6 @@
#endif // _MSC_VER
#endif // __clang__
#define GSL_STRINGIFY_DETAIL(x) #x
#define GSL_STRINGIFY(x) GSL_STRINGIFY_DETAIL(x)
#if defined(__clang__) || defined(__GNUC__)
#define GSL_LIKELY(x) __builtin_expect(!!(x), 1)
#define GSL_UNLIKELY(x) __builtin_expect(!!(x), 0)