[libcxx-commits] [libcxx] 803141c - [libc++] Remove an unused internal concept.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Thu Sep 2 10:27:56 PDT 2021


Author: Mark de Wever
Date: 2021-09-02T19:27:49+02:00
New Revision: 803141c7a794eb54c95735e68e40a3d3fe604813

URL: https://github.com/llvm/llvm-project/commit/803141c7a794eb54c95735e68e40a3d3fe604813
DIFF: https://github.com/llvm/llvm-project/commit/803141c7a794eb54c95735e68e40a3d3fe604813.diff

LOG: [libc++] Remove an unused internal concept.

Removed as suggested by @Quuxplusone during the review of D109075.

Added: 
    

Modified: 
    libcxx/include/__concepts/arithmetic.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__concepts/arithmetic.h b/libcxx/include/__concepts/arithmetic.h
index 250e7f341ef6..9a1383904db6 100644
--- a/libcxx/include/__concepts/arithmetic.h
+++ b/libcxx/include/__concepts/arithmetic.h
@@ -40,8 +40,6 @@ template <class _Tp>
 concept __libcpp_unsigned_integer = __libcpp_is_unsigned_integer<_Tp>::value;
 template <class _Tp>
 concept __libcpp_signed_integer = __libcpp_is_signed_integer<_Tp>::value;
-template <class _Tp>
-concept __libcpp_floating_point = __libcpp_is_floating_point<_Tp>::value;
 
 #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)
 


        


More information about the libcxx-commits mailing list