fixed linux compile

This commit is contained in:
2025-02-09 12:09:59 +01:00
parent 6cb501ded9
commit a4d6f68ee2
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ struct flight
: id(id), airplane(plane), pilot_name(std::move(name)) {}
unsigned int id{};
object::object_ptr<airplane> airplane;
object::object_ptr<test::airplane> airplane;
std::string pilot_name;
template<class Operator>