From cf7ba595aa9d4f3282952ae65813f27408c93d94 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 17 Mar 2019 03:05:00 -0500 Subject: [PATCH] [ox/std] Cleanup --- deps/ox/src/ox/std/types.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deps/ox/src/ox/std/types.hpp b/deps/ox/src/ox/std/types.hpp index 1f2dda4d..4605d5f0 100644 --- a/deps/ox/src/ox/std/types.hpp +++ b/deps/ox/src/ox/std/types.hpp @@ -99,11 +99,11 @@ struct UnsignedType<64> { using type = uint64_t; }; -template -using Int = typename SignedType::type; +template +using Int = typename SignedType::type; -template -using Uint = typename UnsignedType::type; +template +using Uint = typename UnsignedType::type; template using Signed = Int;