diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-26 10:22:42 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-26 10:22:42 +0000 |
commit | dc09408f1a68356ee21969cb4f4fb28e94bf6512 (patch) | |
tree | d0fba596df118c6c37088806eb27772b2a6e03f7 /modules/database/db_json.cpp | |
parent | 49d86527efd5265d835ed5b57e97d5b2a40c6b32 (diff) |
Add a typedef for the serializable id.
Diffstat (limited to 'modules/database/db_json.cpp')
-rw-r--r-- | modules/database/db_json.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/db_json.cpp b/modules/database/db_json.cpp index a0b966e62..a3587a2dc 100644 --- a/modules/database/db_json.cpp +++ b/modules/database/db_json.cpp @@ -41,7 +41,7 @@ class Data final { public: // If non-zero then the id of the database entry. - uint64_t id = 0; + Serializable::Id id = 0; // Data in this database entry. Anope::map<std::stringstream> data; |