fixed linux build for relation completer
This commit is contained in:
+2
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user