[libcxx] Replace remaining _LIBCPP_INLINE_VISIBILITY in __supportReplace remaining _LIBCPP_INLINE_VISIBILITY in __support with _LIBCPP_HIDE_FROM_ABI.Reviewed by: MordanteDifferential Revision:
[libcxx] Replace remaining _LIBCPP_INLINE_VISIBILITY in __supportReplace remaining _LIBCPP_INLINE_VISIBILITY in __support with _LIBCPP_HIDE_FROM_ABI.Reviewed by: MordanteDifferential Revision: https://reviews.llvm.org/D129922
show more ...
[libc++] Make parameter names consistent and enforce the naming style using readability-identifier-namingEnsure that parameter names have the style `__lower_case`Reviewed By: ldionne, #libcSpie
[libc++] Make parameter names consistent and enforce the naming style using readability-identifier-namingEnsure that parameter names have the style `__lower_case`Reviewed By: ldionne, #libcSpies: aheejin, sstefan1, libcxx-commits, miyukiDifferential Revision: https://reviews.llvm.org/D129051
[libc++] Remove the ability to use the std::nullptr_t emulation in C++03 modeBack in https://reviews.llvm.org/D109459, we stopped using the C++03emulation for std::nullptr_t by default, which was
[libc++] Remove the ability to use the std::nullptr_t emulation in C++03 modeBack in https://reviews.llvm.org/D109459, we stopped using the C++03emulation for std::nullptr_t by default, which was an ABI break. Westill left a knob for users to turn it back on if they were broken bythe change, with a note that we would remove that knob after one release.The time has now come to remove the knob and clean up the std::nullptr_temulation.Differential Revision: https://reviews.llvm.org/D114786
[libcxx][test] compiler options are non-portable... it's easier to suppress warnings internally, where we can detect the compiler.* Rename `TEST_COMPILER_C1XX` to `TEST_COMPILER_MSVC`* Rename al
[libcxx][test] compiler options are non-portable... it's easier to suppress warnings internally, where we can detect the compiler.* Rename `TEST_COMPILER_C1XX` to `TEST_COMPILER_MSVC`* Rename all `TEST_WORKAROUND_C1XX_<meow>` to `TEST_WORKAROUND_MSVC_<meow>`Differential Revision: https://reviews.llvm.org/D117422
[libcxx][gardening] Re-order includes across libcxx.This commit alphabetizes all includes in libcxx. This is a NFC.This can also serve as a pseudo "announcement" for how we should order these hea
[libcxx][gardening] Re-order includes across libcxx.This commit alphabetizes all includes in libcxx. This is a NFC.This can also serve as a pseudo "announcement" for how we should order these headers going forward (note: double underscores go before other headers).Differential Revision: https://reviews.llvm.org/D102941
[libcxx] Avoid pulling in xlocinfo.h in public headersIncluding xlocinfo.h is a bit of a layering violation; locale.h isthe C library header we should use, while xlocinfo.h is essentiallypart of
[libcxx] Avoid pulling in xlocinfo.h in public headersIncluding xlocinfo.h is a bit of a layering violation; locale.h isthe C library header we should use, while xlocinfo.h is essentiallypart of the MS C++ library. Including xlocinfo.h brings in yvals.h,which brings in yvals_core.h, which defines the MS STL's versionsupport macros, overriding what libc++'s <version> had defined.Instead just include locale.h, and provide the few defines we needfor locale categories manually.Differential Revision: https://reviews.llvm.org/D99213
[libc++] Rename include/support to include/__supportWe do ship those headers, so the directory name should not be somethingthat can potentially conflict with user-defined directories.Differentia
[libc++] Rename include/support to include/__supportWe do ship those headers, so the directory name should not be somethingthat can potentially conflict with user-defined directories.Differential Revision: https://reviews.llvm.org/D95956