From 2cf9dfe809e4a540d748485132de1bff04fc319d Mon Sep 17 00:00:00 2001 From: Zibi Sarbinowski Date: Thu, 28 Aug 2025 20:31:18 +0000 Subject: [PATCH] Remove __classic_[upper,lower]_table from cxx03 __locale header --- libcxx/include/__cxx03/__locale | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libcxx/include/__cxx03/__locale b/libcxx/include/__cxx03/__locale index d5faa89b99fc0..86160bcdcbd59 100644 --- a/libcxx/include/__cxx03/__locale +++ b/libcxx/include/__cxx03/__locale @@ -582,18 +582,6 @@ public: #endif _LIBCPP_HIDE_FROM_ABI const mask* table() const _NOEXCEPT { return __tab_; } static const mask* classic_table() _NOEXCEPT; -#if defined(__GLIBC__) || defined(__EMSCRIPTEN__) - static const int* __classic_upper_table() _NOEXCEPT; - static const int* __classic_lower_table() _NOEXCEPT; -#endif -#if defined(__NetBSD__) - static const short* __classic_upper_table() _NOEXCEPT; - static const short* __classic_lower_table() _NOEXCEPT; -#endif -#if defined(__MVS__) - static const unsigned short* __classic_upper_table() _NOEXCEPT; - static const unsigned short* __classic_lower_table() _NOEXCEPT; -#endif protected: ~ctype() override;