Revert 313789 because gcc doesn't like it

llvm-svn: 313803
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: 08bba64a1009b48907ba678b59170a7fe9bcc091
diff --git a/include/algorithm b/include/algorithm
index 036b42c..282083a 100644
--- a/include/algorithm
+++ b/include/algorithm
@@ -2962,8 +2962,8 @@
     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 @@
 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;