[libc++][AIX] Remove "pragma priority" from locale.cpp

Summary:
The pragma priority guarded for AIX in locale.cpp is no longer useful and is ignored by the current AIX build compilers. This patch removes it from the source.

Reviewed by: ldionne, hubert.reinterpretcast, libc++

Differential Revision: https://reviews.llvm.org/D119765
This commit is contained in:
Xing Xue 2022-02-15 08:36:29 -05:00
parent 6357ccf57f
commit 16667362d0
1 changed files with 0 additions and 5 deletions

View File

@ -126,11 +126,6 @@ _LIBCPP_NORETURN static void __throw_runtime_error(const string &msg)
}
#if defined(_AIX)
// Set priority to INT_MIN + 256 + 150
# pragma priority ( -2147483242 )
#endif
const locale::category locale::none;
const locale::category locale::collate;
const locale::category locale::ctype;