From c80dc79e36b78c2c79d9eabac5dc62330a099178 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 11 Oct 2020 09:40:41 -0700 Subject: [PATCH] ircd::simd: Minor fix indentation. --- include/ircd/simd/rol.h | 10 +++++----- include/ircd/simd/ror.h | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/ircd/simd/rol.h b/include/ircd/simd/rol.h index 918fff5d3..55d6afc11 100644 --- a/include/ircd/simd/rol.h +++ b/include/ircd/simd/rol.h @@ -15,22 +15,22 @@ namespace ircd::simd { template + class V, + class T> T _rol(const T) noexcept; template + class T> typename std::enable_if::type rol(const T a) noexcept; template + class T> typename std::enable_if::type rol(const T a) noexcept; template + class T> typename std::enable_if::type rol(const T a) noexcept; } diff --git a/include/ircd/simd/ror.h b/include/ircd/simd/ror.h index fbed1f386..a9ad6f2a3 100644 --- a/include/ircd/simd/ror.h +++ b/include/ircd/simd/ror.h @@ -15,22 +15,22 @@ namespace ircd::simd { template + class V, + class T> T _ror(const T) noexcept; template + class T> typename std::enable_if::type ror(const T a) noexcept; template + class T> typename std::enable_if::type ror(const T a) noexcept; template + class T> typename std::enable_if::type ror(const T a) noexcept; }