Fix build on linux

there is not osstream operator<< for const unique_ptr<T>
This commit is contained in:
Mizux Seiha
2020-12-16 13:12:48 +01:00
parent 786b81fc6f
commit 48a51fcd3d

View File

@@ -3963,7 +3963,7 @@ void GlobalCheapestInsertionFilteredHeuristic::InsertFarthestNodesAsSeeds() {
// nodes on routes, some previously empty vehicles may now be used, so we
// update the curator accordingly to ensure it still only stores empty
// vehicles.
DCHECK_NE(empty_vehicle_type_curator_, nullptr);
DCHECK(empty_vehicle_type_curator_ != nullptr);
empty_vehicle_type_curator_->Update(
[this](int vehicle) { return !VehicleIsEmpty(vehicle); });
}