forked from OSchip/llvm-project
[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:
parent
6357ccf57f
commit
16667362d0
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue