Remove unused internal routines. No functional change
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@265363 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -5754,34 +5754,6 @@ prev_permutation(_BidirectionalIterator __first, _BidirectionalIterator __last)
|
|||||||
__less<typename iterator_traits<_BidirectionalIterator>::value_type>());
|
__less<typename iterator_traits<_BidirectionalIterator>::value_type>());
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class _Tp>
|
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
typename enable_if
|
|
||||||
<
|
|
||||||
is_integral<_Tp>::value,
|
|
||||||
_Tp
|
|
||||||
>::type
|
|
||||||
__rotate_left(_Tp __t, _Tp __n = 1)
|
|
||||||
{
|
|
||||||
const unsigned __bits = static_cast<unsigned>(sizeof(_Tp) * __CHAR_BIT__ - 1);
|
|
||||||
__n &= __bits;
|
|
||||||
return static_cast<_Tp>((__t << __n) | (static_cast<typename make_unsigned<_Tp>::type>(__t) >> (__bits - __n)));
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class _Tp>
|
|
||||||
inline _LIBCPP_INLINE_VISIBILITY
|
|
||||||
typename enable_if
|
|
||||||
<
|
|
||||||
is_integral<_Tp>::value,
|
|
||||||
_Tp
|
|
||||||
>::type
|
|
||||||
__rotate_right(_Tp __t, _Tp __n = 1)
|
|
||||||
{
|
|
||||||
const unsigned __bits = static_cast<unsigned>(sizeof(_Tp) * __CHAR_BIT__ - 1);
|
|
||||||
__n &= __bits;
|
|
||||||
return static_cast<_Tp>((__t << (__bits - __n)) | (static_cast<typename make_unsigned<_Tp>::type>(__t) >> __n));
|
|
||||||
}
|
|
||||||
|
|
||||||
_LIBCPP_END_NAMESPACE_STD
|
_LIBCPP_END_NAMESPACE_STD
|
||||||
|
|
||||||
#endif // _LIBCPP_ALGORITHM
|
#endif // _LIBCPP_ALGORITHM
|
||||||
|
|||||||
Reference in New Issue
Block a user