fix unneeded variable warning in release build

This commit is contained in:
Dennis Luxen 2014-05-26 18:40:21 +02:00
parent 4573ae21e6
commit 78270c8155

View File

@ -115,7 +115,10 @@ template <class DataFacadeT> class JSONDescriptor : public BaseDescriptor<DataFa
// for each unpacked segment add the leg to the description
for (unsigned i = 0; i < raw_route.unpacked_path_segments.size(); ++i)
{
const int added_segments = DescribeLeg(raw_route.unpacked_path_segments[i],
#ifndef NDEBUG
const int added_segments =
#endif
DescribeLeg(raw_route.unpacked_path_segments[i],
raw_route.segment_end_coordinates[i]);
BOOST_ASSERT(0 < added_segments);
description_factory.SetEndSegment(raw_route.segment_end_coordinates[i].target_phantom);