From 3f56700e19a2311e31b91fc39279fd2b410e553c Mon Sep 17 00:00:00 2001 From: q66 Date: Fri, 5 Jun 2015 23:45:07 +0100 Subject: [PATCH] format fixes --- octa/type_traits.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/octa/type_traits.h b/octa/type_traits.h index 0b900da..869bc4f 100644 --- a/octa/type_traits.h +++ b/octa/type_traits.h @@ -71,7 +71,7 @@ template constexpr T IntegralConstant::value; namespace detail { template struct IsVoidBase : False {}; - template< > struct IsVoidBase: True {}; + template< > struct IsVoidBase: True {}; } template @@ -277,12 +277,12 @@ struct IsAbstract: IntegralConstant {}; /* is const */ -template struct IsConst : False {}; +template struct IsConst : False {}; template struct IsConst: True {}; /* is volatile */ -template struct IsVolatile : False {}; +template struct IsVolatile : False {}; template struct IsVolatile: True {}; /* is empty */ @@ -641,8 +641,8 @@ struct IsConvertible: octa::detail::IsConvertibleBase::Type {}; /* type equality */ -template struct IsSame : False {}; -template struct IsSame: True {}; +template struct IsSame : False {}; +template struct IsSame: True {}; /* extent */ @@ -675,12 +675,12 @@ struct Rank: IntegralConstant::value + 1> {}; namespace detail { template - struct RemoveConstBase { typedef T Type; }; + struct RemoveConstBase { typedef T Type; }; template struct RemoveConstBase { typedef T Type; }; template - struct RemoveVolatileBase { typedef T Type; }; + struct RemoveVolatileBase { typedef T Type; }; template struct RemoveVolatileBase { typedef T Type; }; } @@ -742,7 +742,7 @@ using AddCv = typename octa::detail::AddCvBase::Type; namespace detail { template - struct RemoveReferenceBase { typedef T Type; }; + struct RemoveReferenceBase { typedef T Type; }; template struct RemoveReferenceBase { typedef T Type; }; template @@ -753,7 +753,7 @@ namespace detail { namespace detail { template - struct RemovePointerBase { typedef T Type; }; + struct RemovePointerBase { typedef T Type; }; template struct RemovePointerBase { typedef T Type; }; template @@ -781,7 +781,7 @@ using AddPointer = typename octa::detail::AddPointerBase::Type; /* add lvalue reference */ namespace detail { - template struct AddLr { typedef T &Type; }; + template struct AddLr { typedef T &Type; }; template struct AddLr { typedef T &Type; }; template struct AddLr { typedef T &Type; }; template<> struct AddLr { @@ -801,7 +801,7 @@ namespace detail { /* add rvalue reference */ namespace detail { - template struct AddRr { typedef T &&Type; }; + template struct AddRr { typedef T &&Type; }; template struct AddRr { typedef T &&Type; }; template struct AddRr { typedef T &&Type; }; template<> struct AddRr {