[libcxx-commits] [PATCH] D97015: [libcxx] cleans up __cpp_concepts	mess
    Mark de Wever via Phabricator via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Mon Feb 22 11:25:57 PST 2021
    
    
  
Mordante added inline comments.
================
Comment at: libcxx/include/concepts:152
 
-#if _LIBCPP_STD_VER > 17 && defined(__cpp_concepts) && __cpp_concepts >= 201811L
+#if _LIBCPP_STD_VER > 17 && !_LIBCPP_HAS_NO_CONCEPTS
 
----------------
I see `!_LIBCPP_HAS_NO_CONCEPTS` instead of `!defined(_LIBCPP_HAS_NO_CONCEPTS)` at several places in this patch. Probably part of the new build failures.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D97015/new/
https://reviews.llvm.org/D97015
    
    
More information about the libcxx-commits
mailing list