fixed linux compile

This commit is contained in:
2025-02-06 22:18:46 +01:00
parent 0b70f5d4ee
commit 3d90d9d6ee
4 changed files with 6 additions and 3 deletions
@@ -13,9 +13,9 @@ void attribute_definition_generator::on_primary_key(const char *id, std::string
on_attribute(id, pk, { size, utils::constraints::PRIMARY_KEY });
}
void attribute_definition_generator::on_revision(const char *id, unsigned long long int &x)
void attribute_definition_generator::on_revision(const char *id, uint64_t &rev)
{
on_attribute(id, x);
on_attribute(id, rev);
}
std::pair<std::string, std::string> attribute_definition_generator::determine_foreign_ref(const std::type_index &ti)