File diff r23537:f6a6d4ce4bd5 → r23538:8df50944b27a
src/train_cmd.cpp
Show inline comments
 
@@ -811,13 +811,13 @@ static Train *FindGoodVehiclePos(const T
 
	}
 

	
 
	return NULL;
 
}
 

	
 
/** Helper type for lists/vectors of trains */
 
typedef SmallVector<Train *, 16> TrainList;
 
typedef std::vector<Train *> TrainList;
 

	
 
/**
 
 * Make a backup of a train into a train list.
 
 * @param list to make the backup in
 
 * @param t    the train to make the backup of
 
 */