[libcxx-commits] [PATCH] D101205: [libcxx] disables ranges for clang-cl

Zoe Carver via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Apr 23 16:26:54 PDT 2021


zoecarver accepted this revision.
zoecarver added a comment.
This revision is now accepted and ready to land.

Once the tests pass, please land this to fix the CI (that's why I'm approving as libc++ as well).



================
Comment at: libcxx/include/__config:851
 
-#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_HAS_NO_CONCEPTS)
+#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_HAS_NO_CONCEPTS) || defined(_MSC_VER)
 #define _LIBCPP_HAS_NO_RANGES
----------------
Will this catch "normal" msvc too? 


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101205/new/

https://reviews.llvm.org/D101205



More information about the libcxx-commits mailing list