[libcxx-commits] [libcxx] libc++ test: update MinSequenceContainer.h to make some tests pass on MSVC STL (PR #140287)

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Sat May 17 02:56:15 PDT 2025


================
@@ -47,6 +54,13 @@ struct MinSequenceContainer {
     return from_vector_iterator(data_.insert(to_vector_iterator(p), std::move(value)));
   }
 
+#if defined(__cpp_lib_containers_ranges) && __cpp_lib_containers_ranges >= 202202L
+  template <class Rng>
----------------
philnik777 wrote:

```suggestion
  template <class Range>
```

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


More information about the libcxx-commits mailing list