[libcxx-commits] [libcxx] [libc++][ranges] Implement P1899 `ranges::stride_view`. (PR #65200)
Hristo Hristov via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Feb 23 22:48:39 PST 2026
================
@@ -0,0 +1,40 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// REQUIRES: std-at-least-c++23
+// REQUIRES: libcpp-hardening-mode={{fast|extensive|debug}}
+// XFAIL:libcpp-hardening-mode=debug && availability-verbose_abort-missing
+
+// constexpr decltype(auto) operator*() const
+
+#include "check_assertion.h"
+#include <ranges>
----------------
H-G-Hristov wrote:
```suggestion
#include <ranges>
#include "check_assertion.h"
```
Nit: I think this is how headers are ordered typically. Same for other files.
https://github.com/llvm/llvm-project/pull/65200
More information about the libcxx-commits
mailing list