This commit is contained in:
Kajari Ghosh 2017-11-09 11:40:06 -05:00 committed by Michael Krasnyk
parent 90ff725125
commit e02c5c3c6d

View File

@ -519,8 +519,8 @@ void EdgeBasedGraphFactory::GenerateEdgeExpandedEdges(
{ {
std::size_t nodes_processed = 0; std::size_t nodes_processed = 0;
std::vector<EdgeWithData> continuous_data; std::vector<EdgeWithData> continuous_data; // may need this
std::vector<EdgeWithData> delayed_data; std::vector<EdgeWithData> delayed_data; // may need this
std::vector<Conditional> conditionals; std::vector<Conditional> conditionals;
}; };
using EdgesPipelineBufferPtr = std::shared_ptr<EdgesPipelineBuffer>; using EdgesPipelineBufferPtr = std::shared_ptr<EdgesPipelineBuffer>;
@ -529,8 +529,8 @@ void EdgeBasedGraphFactory::GenerateEdgeExpandedEdges(
{ {
std::size_t nodes_processed = 0; std::size_t nodes_processed = 0;
std::vector<TurnData> continuous_turn_data; std::vector<TurnData> continuous_turn_data; // populate answers from guidance
std::vector<TurnData> delayed_turn_data; std::vector<TurnData> delayed_turn_data; // populate answers from guidance
}; };
using TurnsPipelineBufferPtr = std::shared_ptr<TurnsPipelineBuffer>; using TurnsPipelineBufferPtr = std::shared_ptr<TurnsPipelineBuffer>;