diff --git a/deps/ox/src/ox/std/types.hpp b/deps/ox/src/ox/std/types.hpp index 2a2e3f1e..1f2dda4d 100644 --- a/deps/ox/src/ox/std/types.hpp +++ b/deps/ox/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; + }