From f913c39e5b0a0da0c020ee83e22bbb859fcb0ca7 Mon Sep 17 00:00:00 2001 From: aPere3 Date: Fri, 3 Feb 2023 09:50:42 +0100 Subject: [PATCH] fix(format): fix linter complaining --- compiler/lib/ServerLib/DynamicRankCall.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/compiler/lib/ServerLib/DynamicRankCall.cpp b/compiler/lib/ServerLib/DynamicRankCall.cpp index faff4ee4f..540699859 100644 --- a/compiler/lib/ServerLib/DynamicRankCall.cpp +++ b/compiler/lib/ServerLib/DynamicRankCall.cpp @@ -18,12 +18,8 @@ namespace serverlib { /// Helper class template that yields an unsigned integer type given a /// size in bytes template struct int_type_of_size {}; -template <> struct int_type_of_size<4> { - typedef uint32_t type; -}; -template <> struct int_type_of_size<8> { - typedef uint64_t type; -}; +template <> struct int_type_of_size<4> { typedef uint32_t type; }; +template <> struct int_type_of_size<8> { typedef uint64_t type; }; /// Converts one function pointer into another // TODO: Not sure this is valid in all implementations / on all