diff --git a/src/ox/std/types.hpp b/src/ox/std/types.hpp index 2a2e3f1e8..1f2dda4d4 100644 --- a/src/ox/std/types.hpp +++ b/src/ox/std/types.hpp @@ -105,6 +105,12 @@ using Int = typename SignedType::type; template using Uint = typename UnsignedType::type; +template +using Signed = Int; + +template +using Unsigned = Uint; + }