Tentative solution for bug #38
This commit is contained in:
@@ -45,7 +45,7 @@ void WaypointManager::UnloadAll() {
|
||||
//TODO
|
||||
}
|
||||
|
||||
void WaypointManager::UnloadIf(std::function<bool(std::pair<const int, WaypointData>)> fn) {
|
||||
void WaypointManager::UnloadIf(std::function<bool(std::pair<const int, WaypointData const&>)> fn) {
|
||||
//TODO
|
||||
}
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ public:
|
||||
void Delete(int uid);
|
||||
|
||||
void UnloadAll();
|
||||
void UnloadIf(std::function<bool(std::pair<const int, WaypointData>)> fn);
|
||||
void UnloadIf(std::function<bool(std::pair<const int, WaypointData const&>)> fn);
|
||||
|
||||
//accessors & mutators
|
||||
WaypointData* Get(int uid);
|
||||
|
||||
Reference in New Issue
Block a user