Fix c++ formatting

This commit is contained in:
Michael Krasnyk
2017-01-03 22:11:59 +01:00
committed by Moritz Kobitzsch
parent 2640a319c1
commit 24ab71a346
12 changed files with 22 additions and 27 deletions
@@ -312,7 +312,7 @@ bool MergableRoadDetector::HaveSameDirection(const NodeID intersection_node,
*/
const auto prune = [](auto &data_vector) {
BOOST_ASSERT(data_vector.size() >= 3);
//erase the first third of the vector
// erase the first third of the vector
data_vector.erase(data_vector.begin(), data_vector.begin() + data_vector.size() / 3);
};