From 4300304ef24c247b3db0255763f46b9f95c3a83d Mon Sep 17 00:00:00 2001 From: Dmitry Kobets <89153909+dmitrykobets-msft@users.noreply.github.com> Date: Wed, 26 Jul 2023 15:07:28 -0700 Subject: [PATCH] Remove unused macros (#1128) This macro is a relic of the old implementation of GSL's header. It is unused and can be removed. --- include/gsl/assert | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/gsl/assert b/include/gsl/assert index 78a9e8c..458ad7d 100644 --- a/include/gsl/assert +++ b/include/gsl/assert @@ -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)