mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd::simd: Minor fix indentation.
This commit is contained in:
parent
26f9acb81f
commit
c80dc79e36
2 changed files with 10 additions and 10 deletions
|
@ -15,22 +15,22 @@
|
||||||
namespace ircd::simd
|
namespace ircd::simd
|
||||||
{
|
{
|
||||||
template<int b,
|
template<int b,
|
||||||
class V,
|
class V,
|
||||||
class T>
|
class T>
|
||||||
T _rol(const T) noexcept;
|
T _rol(const T) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 16, T>::type
|
typename std::enable_if<sizeof(T) == 16, T>::type
|
||||||
rol(const T a) noexcept;
|
rol(const T a) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 32, T>::type
|
typename std::enable_if<sizeof(T) == 32, T>::type
|
||||||
rol(const T a) noexcept;
|
rol(const T a) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 64, T>::type
|
typename std::enable_if<sizeof(T) == 64, T>::type
|
||||||
rol(const T a) noexcept;
|
rol(const T a) noexcept;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,22 +15,22 @@
|
||||||
namespace ircd::simd
|
namespace ircd::simd
|
||||||
{
|
{
|
||||||
template<int b,
|
template<int b,
|
||||||
class V,
|
class V,
|
||||||
class T>
|
class T>
|
||||||
T _ror(const T) noexcept;
|
T _ror(const T) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 16, T>::type
|
typename std::enable_if<sizeof(T) == 16, T>::type
|
||||||
ror(const T a) noexcept;
|
ror(const T a) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 32, T>::type
|
typename std::enable_if<sizeof(T) == 32, T>::type
|
||||||
ror(const T a) noexcept;
|
ror(const T a) noexcept;
|
||||||
|
|
||||||
template<int b,
|
template<int b,
|
||||||
class T>
|
class T>
|
||||||
typename std::enable_if<sizeof(T) == 64, T>::type
|
typename std::enable_if<sizeof(T) == 64, T>::type
|
||||||
ror(const T a) noexcept;
|
ror(const T a) noexcept;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue