From 0df861d7b5fd263fe782d78eb9aed1214ae9a6e3 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Fri, 23 Jun 2017 00:39:31 +0300 Subject: [PATCH] Added uptr type --- Utilities/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utilities/types.h b/Utilities/types.h index b88e0dfb41..caafe33158 100644 --- a/Utilities/types.h +++ b/Utilities/types.h @@ -70,6 +70,8 @@ using ulong = unsigned long; using ullong = unsigned long long; using llong = long long; +using uptr = std::uintptr_t; + using u8 = std::uint8_t; using u16 = std::uint16_t; using u32 = std::uint32_t;