Commit e76c198e authored by oscar's avatar oscar

提交更新

parent 0a3af2ce
......@@ -74,8 +74,8 @@ namespace jf {
}
lOutRaodId = std::stol(roadId);
int _sectionId = std::stol(sectionId);
int _laneId = std::stol(laneId);
int _sectionId = sectionId == "" ? 0 : std::stol(sectionId);
int _laneId = laneId == "" ? 0 : std::stol(laneId);
#ifdef _DEBUG_API_
std::cout << "lOutRaodId = " << lOutRaodId << ",_sectionId = " << _sectionId << ", _laneId = " << _laneId << std::endl;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment