Mark the __eval methods on independent_bits_engine (and __independent_bits_engine) as const, since they make no changes to the object. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@313789 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2017-09-20 18:32:08 +00:00
parent e2b6832fcd
commit 9641305bba
2 changed files with 8 additions and 8 deletions

View File

@@ -2962,8 +2962,8 @@ public:
result_type operator()() {return __eval(integral_constant<bool, _Rp != 0>());} result_type operator()() {return __eval(integral_constant<bool, _Rp != 0>());}
private: private:
result_type __eval(false_type); result_type __eval(false_type) const;
result_type __eval(true_type); result_type __eval(true_type) const;
}; };
template<class _Engine, class _UIntType> template<class _Engine, class _UIntType>
@@ -3004,14 +3004,14 @@ __independent_bits_engine<_Engine, _UIntType>
template<class _Engine, class _UIntType> template<class _Engine, class _UIntType>
inline inline
_UIntType _UIntType
__independent_bits_engine<_Engine, _UIntType>::__eval(false_type) __independent_bits_engine<_Engine, _UIntType>::__eval(false_type) const
{ {
return static_cast<result_type>(__e_() & __mask0_); return static_cast<result_type>(__e_() & __mask0_);
} }
template<class _Engine, class _UIntType> template<class _Engine, class _UIntType>
_UIntType _UIntType
__independent_bits_engine<_Engine, _UIntType>::__eval(true_type) __independent_bits_engine<_Engine, _UIntType>::__eval(true_type) const
{ {
const size_t _WRt = numeric_limits<result_type>::digits; const size_t _WRt = numeric_limits<result_type>::digits;
result_type _Sp = 0; result_type _Sp = 0;

View File

@@ -3124,8 +3124,8 @@ public:
private: private:
_LIBCPP_INLINE_VISIBILITY _LIBCPP_INLINE_VISIBILITY
result_type __eval(false_type); result_type __eval(false_type) const;
result_type __eval(true_type); result_type __eval(true_type) const;
template <size_t __count> template <size_t __count>
_LIBCPP_INLINE_VISIBILITY _LIBCPP_INLINE_VISIBILITY
@@ -3151,14 +3151,14 @@ private:
template<class _Engine, size_t __w, class _UIntType> template<class _Engine, size_t __w, class _UIntType>
inline inline
_UIntType _UIntType
independent_bits_engine<_Engine, __w, _UIntType>::__eval(false_type) independent_bits_engine<_Engine, __w, _UIntType>::__eval(false_type) const
{ {
return static_cast<result_type>(__e_() & __mask0); return static_cast<result_type>(__e_() & __mask0);
} }
template<class _Engine, size_t __w, class _UIntType> template<class _Engine, size_t __w, class _UIntType>
_UIntType _UIntType
independent_bits_engine<_Engine, __w, _UIntType>::__eval(true_type) independent_bits_engine<_Engine, __w, _UIntType>::__eval(true_type) const
{ {
result_type _Sp = 0; result_type _Sp = 0;
for (size_t __k = 0; __k < __n0; ++__k) for (size_t __k = 0; __k < __n0; ++__k)