From 5dae3968424d78b1f9c146455c3556a58f24dbf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20K=C3=BChl?= Date: Fri, 16 Jan 2026 13:09:09 +0100 Subject: [PATCH] use int64_t as id type in shipment model --- test/models/shipment.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/models/shipment.hpp b/test/models/shipment.hpp index 8e8b79f..0277943 100644 --- a/test/models/shipment.hpp +++ b/test/models/shipment.hpp @@ -17,7 +17,7 @@ struct shipment { shipment(const long id, std::string tracking_number) : id(id), tracking_number(std::move(tracking_number)) {} - long id{}; + int64_t id{}; std::string tracking_number; object::collection > packages{}; @@ -35,7 +35,7 @@ struct package { package(const long id, double weight, object::object_ptr del) : id(id), weight(weight), delivery(std::move(del)){} - long id{}; + int64_t id{}; double weight{}; object::object_ptr delivery;