diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 23:39:26 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 23:39:44 +0200 |
commit | fcc3c353fd250994dec73c4aa4bd66d976c910bb (patch) | |
tree | d009d175c4a8aec3d7b639fa7a37c635b072d037 /deimos/core/id_name.h | |
parent | 636b98e0ec8771c4377fd78e036da6acbec109db (diff) |
Separate gsl stuff, and use std-like int types
Diffstat (limited to 'deimos/core/id_name.h')
-rw-r--r-- | deimos/core/id_name.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deimos/core/id_name.h b/deimos/core/id_name.h index 6ca5a46..e158675 100644 --- a/deimos/core/id_name.h +++ b/deimos/core/id_name.h @@ -8,7 +8,7 @@ namespace deimos struct IdName
{
- uint128 hash;
+ uint128_t hash;
gsl::czstring name;
explicit constexpr IdName(gsl::czstring name_) :
|