[libcxx] r313803 - Revert 313789 because gcc doesn't like it

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 20 12:38:43 PDT 2017


Author: marshall
Date: Wed Sep 20 12:38:43 2017
New Revision: 313803

URL: http://llvm.org/viewvc/llvm-project?rev=313803&view=rev
Log:
Revert 313789 because gcc doesn't like it

Modified:
    libcxx/trunk/include/algorithm
    libcxx/trunk/include/random

Modified: libcxx/trunk/include/algorithm
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/algorithm?rev=313803&r1=313802&r2=313803&view=diff
==============================================================================
--- libcxx/trunk/include/algorithm (original)
+++ libcxx/trunk/include/algorithm Wed Sep 20 12:38:43 2017
@@ -2962,8 +2962,8 @@ public:
     result_type operator()() {return __eval(integral_constant<bool, _Rp != 0>());}
 
 private:
-    result_type __eval(false_type) const;
-    result_type __eval(true_type)  const;
+    result_type __eval(false_type);
+    result_type __eval(true_type);
 };
 
 template<class _Engine, class _UIntType>
@@ -3004,14 +3004,14 @@ __independent_bits_engine<_Engine, _UInt
 template<class _Engine, class _UIntType>
 inline
 _UIntType
-__independent_bits_engine<_Engine, _UIntType>::__eval(false_type) const
+__independent_bits_engine<_Engine, _UIntType>::__eval(false_type)
 {
     return static_cast<result_type>(__e_() & __mask0_);
 }
 
 template<class _Engine, class _UIntType>
 _UIntType
-__independent_bits_engine<_Engine, _UIntType>::__eval(true_type) const
+__independent_bits_engine<_Engine, _UIntType>::__eval(true_type)
 {
     const size_t _WRt = numeric_limits<result_type>::digits;
     result_type _Sp = 0;

Modified: libcxx/trunk/include/random
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/random?rev=313803&r1=313802&r2=313803&view=diff
==============================================================================
--- libcxx/trunk/include/random (original)
+++ libcxx/trunk/include/random Wed Sep 20 12:38:43 2017
@@ -3124,8 +3124,8 @@ public:
 
 private:
     _LIBCPP_INLINE_VISIBILITY
-    result_type __eval(false_type) const;
-    result_type __eval(true_type) const;
+    result_type __eval(false_type);
+    result_type __eval(true_type);
 
     template <size_t __count>
         _LIBCPP_INLINE_VISIBILITY
@@ -3151,14 +3151,14 @@ private:
 template<class _Engine, size_t __w, class _UIntType>
 inline
 _UIntType
-independent_bits_engine<_Engine, __w, _UIntType>::__eval(false_type) const
+independent_bits_engine<_Engine, __w, _UIntType>::__eval(false_type)
 {
     return static_cast<result_type>(__e_() & __mask0);
 }
 
 template<class _Engine, size_t __w, class _UIntType>
 _UIntType
-independent_bits_engine<_Engine, __w, _UIntType>::__eval(true_type) const
+independent_bits_engine<_Engine, __w, _UIntType>::__eval(true_type)
 {
     result_type _Sp = 0;
     for (size_t __k = 0; __k < __n0; ++__k)




More information about the cfe-commits mailing list