From fa386820b387b7babea66788e75862aa30846186 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sun, 22 Aug 2021 12:01:06 +0700 Subject: [PATCH] do not defend against isalnum/etc. macros --- stl/inc/cctype | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/stl/inc/cctype b/stl/inc/cctype index cc6c49fe7b3..597de07b05a 100644 --- a/stl/inc/cctype +++ b/stl/inc/cctype @@ -18,22 +18,6 @@ _STL_DISABLE_CLANG_WARNINGS #pragma push_macro("new") #undef new -// remove any (improper) macro overrides -#undef isalnum -#undef isalpha -#undef isblank -#undef iscntrl -#undef isdigit -#undef isgraph -#undef islower -#undef isprint -#undef ispunct -#undef isspace -#undef isupper -#undef isxdigit -#undef tolower -#undef toupper - _STD_BEGIN using _CSTD isalnum; using _CSTD isalpha;