diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-11 23:49:22 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-13 00:04:48 +0200 |
commit | 8db26a7350aad53ed73a127f9b8eb6ef15bf0be1 (patch) | |
tree | 5fd5f331d61e20ba89b6ae00c4b387b1e72796f1 /deimos/core/std.h | |
parent | a2671839daddfaaec63f43132854c606c556558a (diff) |
Implement Status
Diffstat (limited to 'deimos/core/std.h')
-rw-r--r-- | deimos/core/std.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deimos/core/std.h b/deimos/core/std.h index 42bedbe..4bb2983 100644 --- a/deimos/core/std.h +++ b/deimos/core/std.h @@ -11,8 +11,10 @@ using int32_t = signed int; using int64_t = signed long long;
using size_t = uint64_t;
+using uintptr_t = uint64_t;
static_assert(sizeof(size_t) == sizeof(void*), "size_t should be pointer size");
+static_assert(sizeof(uintptr_t) == sizeof(void*), "size_t should be pointer size");
namespace std
{
|