From 1780657789edc6644a469bb4db5b739e0e5ddc3c Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 16 Mar 2019 15:50:37 -0500 Subject: [PATCH] [ox/std] Add Siged and Unsiged templates --- deps/ox/src/ox/std/types.hpp | 6 ++++++ 1 file changed, 6 insertions(+) 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; + }