[libcxx-commits] [libcxx] [libc++] Make forward_list constexpr as part of P3372R3 (PR #129435)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jun 4 09:16:50 PDT 2025
================
@@ -245,8 +245,8 @@ inline _LIBCPP_HIDE_FROM_ABI constexpr auto to_address(_Tp* __p) noexcept {
}
template <class _Pointer>
-inline _LIBCPP_HIDE_FROM_ABI constexpr auto
-to_address(const _Pointer& __p) noexcept -> decltype(std::__to_address(__p)) {
+inline _LIBCPP_HIDE_FROM_ABI constexpr auto to_address(const _Pointer& __p) noexcept
+ -> decltype(std::__to_address(__p)) {
----------------
ldionne wrote:
I'm not certain, but it makes the formatter happy.
https://github.com/llvm/llvm-project/pull/129435
More information about the libcxx-commits
mailing list