fixed linux build for relation completer

This commit is contained in:
2025-07-07 20:51:59 +02:00
parent e85543719c
commit 3374aba5ab
11 changed files with 72 additions and 59 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ struct ingredient
{
unsigned int id{};
std::string name;
matador::object::collection<matador::object::object_ptr<recipe>> recipes{};
matador::object::collection<matador::object::object_ptr<demo::recipe>> recipes{};
ingredient()= default;
ingredient(const unsigned int id, std::string name)
@@ -36,7 +36,7 @@ struct recipe
{
unsigned int id{};
std::string name;
matador::object::collection<matador::object::object_ptr<ingredient>> ingredients{};
matador::object::collection<matador::object::object_ptr<demo::ingredient>> ingredients{};
recipe()= default;
recipe(const unsigned int id, std::string name)