[libcxx-commits] [libcxx] [libc++] P3450R1: Extend `std::is_within_lifetime` (PR #201053)

via libcxx-commits libcxx-commits at lists.llvm.org
Sun Jun 21 12:03:16 PDT 2026


================
@@ -18,9 +18,9 @@
 _LIBCPP_BEGIN_NAMESPACE_STD
 
 #if _LIBCPP_STD_VER >= 26 && __has_builtin(__builtin_is_within_lifetime)
-template <class _Tp>
+template <class _Up = void, class _Tp>
 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI consteval bool is_within_lifetime(const _Tp* __p) noexcept {
-  return __builtin_is_within_lifetime(__p);
+  return __builtin_is_within_lifetime(__p) && __builtin_constant_p(static_cast<const volatile _Up*>(__p) && true);
----------------
huixie90 wrote:

In that case, i don't understand why don't we directly modify `__builtin_is_within_lifetime` , which should be simpler change then this , which needs to use `__builtin_constant_p` in a weird way 

https://github.com/llvm/llvm-project/pull/201053


More information about the libcxx-commits mailing list