diff --git a/src/ox/std/types.hpp b/src/ox/std/types.hpp index 1f2dda4d4..4605d5f07 100644 --- a/src/ox/std/types.hpp +++ b/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;