mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Apply the same global to etl namespace move on overlooked functions
This commit is contained in:
parent
307ddc9c98
commit
6e125e4b45
@ -2519,32 +2519,30 @@ namespace etl
|
||||
temp ^= rhs;
|
||||
return temp;
|
||||
}
|
||||
} // namespace etl
|
||||
|
||||
//***************************************************************************
|
||||
/// operator !=
|
||||
///\ingroup bitset
|
||||
//***************************************************************************
|
||||
template <size_t Active_Bits, typename TElement>
|
||||
ETL_CONSTEXPR14 bool operator!=(const etl::bitset<Active_Bits, TElement>& lhs, const etl::bitset<Active_Bits, TElement>& rhs) ETL_NOEXCEPT
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
//***************************************************************************
|
||||
/// operator !=
|
||||
///\ingroup bitset
|
||||
//***************************************************************************
|
||||
template <size_t Active_Bits, typename TElement>
|
||||
ETL_CONSTEXPR14 bool operator!=(const etl::bitset<Active_Bits, TElement>& lhs, const etl::bitset<Active_Bits, TElement>& rhs) ETL_NOEXCEPT
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
/// swap
|
||||
//*************************************************************************
|
||||
template <size_t Active_Bits, typename TElement>
|
||||
ETL_CONSTEXPR14 void swap(etl::bitset<Active_Bits, TElement>& lhs, etl::bitset<Active_Bits, TElement>& rhs) ETL_NOEXCEPT
|
||||
{
|
||||
lhs.swap(rhs);
|
||||
}
|
||||
//*************************************************************************
|
||||
/// swap
|
||||
//*************************************************************************
|
||||
template <size_t Active_Bits, typename TElement>
|
||||
ETL_CONSTEXPR14 void swap(etl::bitset<Active_Bits, TElement>& lhs, etl::bitset<Active_Bits, TElement>& rhs) ETL_NOEXCEPT
|
||||
{
|
||||
lhs.swap(rhs);
|
||||
}
|
||||
|
||||
//***************************************************************************
|
||||
/// bitset_ext
|
||||
//***************************************************************************
|
||||
|
||||
//***************************************************************************
|
||||
/// bitset_ext
|
||||
//***************************************************************************
|
||||
namespace etl
|
||||
{
|
||||
//***************************************************************************
|
||||
template <size_t Active_Bits = 0U, typename TElement = unsigned char>
|
||||
class bitset_ext;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user