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