diff --git a/include/guidance/turn_lane_handler.hpp b/include/guidance/turn_lane_handler.hpp index b0491d7c4..180bc84b3 100644 --- a/include/guidance/turn_lane_handler.hpp +++ b/include/guidance/turn_lane_handler.hpp @@ -34,8 +34,7 @@ namespace lanes namespace { -using TurnLaneScenario = enum TurnLaneScenario -{ +using TurnLaneScenario = enum TurnLaneScenario { SIMPLE, // a straightforward assignment PARTITION_LOCAL, // an assignment that requires partitioning, using local turns SIMPLE_PREVIOUS, // an assignemtnn using the turns specified at the previous road (e.g. diff --git a/include/partitioner/cell_storage.hpp b/include/partitioner/cell_storage.hpp index 264d43786..db41405c2 100644 --- a/include/partitioner/cell_storage.hpp +++ b/include/partitioner/cell_storage.hpp @@ -100,7 +100,8 @@ template class CellStorageImpl { using ValueT = decltype(*std::declval()); - using base_t = boost::iterator_facade, ValueT, boost::random_access_traversal_tag>; + using base_t = boost:: + iterator_facade, ValueT, boost::random_access_traversal_tag>; public: using value_type = typename base_t::value_type; diff --git a/include/util/bit_range.hpp b/include/util/bit_range.hpp index 08100d6b4..876c46a2d 100644 --- a/include/util/bit_range.hpp +++ b/include/util/bit_range.hpp @@ -49,7 +49,10 @@ class BitIterator : public boost::iterator_facade, boost::forward_traversal_tag, const std::size_t> { - using base_t = boost::iterator_facade, const std::size_t, boost::forward_traversal_tag, const std::size_t>; + using base_t = boost::iterator_facade, + const std::size_t, + boost::forward_traversal_tag, + const std::size_t>; public: using value_type = typename base_t::value_type; diff --git a/include/util/filtered_integer_range.hpp b/include/util/filtered_integer_range.hpp index fcce50ac8..be95cea27 100644 --- a/include/util/filtered_integer_range.hpp +++ b/include/util/filtered_integer_range.hpp @@ -26,7 +26,10 @@ class filtered_integer_iterator boost::single_pass_traversal_tag, Integer> { - using base_t = boost::iterator_facade, Integer, boost::single_pass_traversal_tag, Integer>; + using base_t = boost::iterator_facade, + Integer, + boost::single_pass_traversal_tag, + Integer>; public: using value_type = typename base_t::value_type; diff --git a/include/util/integer_range.hpp b/include/util/integer_range.hpp index 39bf94fd9..cd6052ddc 100644 --- a/include/util/integer_range.hpp +++ b/include/util/integer_range.hpp @@ -22,7 +22,10 @@ class integer_iterator : public boost::iterator_facade boost::random_access_traversal_tag, Integer> { - using base_t = boost::iterator_facade, Integer, boost::random_access_traversal_tag, Integer>; + using base_t = boost::iterator_facade, + Integer, + boost::random_access_traversal_tag, + Integer>; public: using value_type = typename base_t::value_type; diff --git a/include/util/packed_vector.hpp b/include/util/packed_vector.hpp index fc3ec830b..306fc82ca 100644 --- a/include/util/packed_vector.hpp +++ b/include/util/packed_vector.hpp @@ -336,7 +336,10 @@ template class Pack boost::random_access_traversal_tag, ReferenceT> { - using base_t = boost::iterator_facade, DataT, boost::random_access_traversal_tag, ReferenceT>; + using base_t = boost::iterator_facade, + DataT, + boost::random_access_traversal_tag, + ReferenceT>; public: using value_type = typename base_t::value_type; diff --git a/include/util/static_assert.hpp b/include/util/static_assert.hpp index d7400e92a..3615cc10c 100644 --- a/include/util/static_assert.hpp +++ b/include/util/static_assert.hpp @@ -10,13 +10,15 @@ namespace util template inline void static_assert_iter_value() { - using IterValueType = typename std::iterator_traits;::value_type; + using IterValueType = typename std::iterator_traits; + ::value_type; static_assert(std::is_same::value, ""); } template inline void static_assert_iter_category() { - using IterCategoryType = typename std::iterator_traits;::iterator_category; + using IterCategoryType = typename std::iterator_traits; + ::iterator_category; static_assert(std::is_base_of::value, ""); } diff --git a/include/util/vector_view.hpp b/include/util/vector_view.hpp index 0258ef8a4..961b13c7e 100644 --- a/include/util/vector_view.hpp +++ b/include/util/vector_view.hpp @@ -30,7 +30,10 @@ class VectorViewIterator : public boost::iterator_facade { - using base_t = boost::iterator_facade, DataT, boost::random_access_traversal_tag, DataT &>; + using base_t = boost::iterator_facade, + DataT, + boost::random_access_traversal_tag, + DataT &>; public: using value_type = typename base_t::value_type; diff --git a/unit_tests/util/query_heap.cpp b/unit_tests/util/query_heap.cpp index aa9033331..bca90fc73 100644 --- a/unit_tests/util/query_heap.cpp +++ b/unit_tests/util/query_heap.cpp @@ -22,7 +22,9 @@ struct TestData using TestNodeID = NodeID; using TestKey = int; using TestWeight = int; -using storage_types = boost::mpl::list, MapStorage, UnorderedMapStorage>; +using storage_types = boost::mpl::list, + MapStorage, + UnorderedMapStorage>; template struct RandomDataFixture { diff --git a/unit_tests/util/static_rtree.cpp b/unit_tests/util/static_rtree.cpp index 1351d6020..5a9336e1f 100644 --- a/unit_tests/util/static_rtree.cpp +++ b/unit_tests/util/static_rtree.cpp @@ -174,11 +174,18 @@ struct GraphFixture std::vector edges; }; -using TestRandomGraphFixture_LeafHalfFull = RandomGraphFixture; -using TestRandomGraphFixture_LeafFull = RandomGraphFixture; -using TestRandomGraphFixture_TwoLeaves = RandomGraphFixture; -using TestRandomGraphFixture_Branch = RandomGraphFixture; -using TestRandomGraphFixture_MultipleLevels = RandomGraphFixture; +using TestRandomGraphFixture_LeafHalfFull = + RandomGraphFixture; +using TestRandomGraphFixture_LeafFull = + RandomGraphFixture; +using TestRandomGraphFixture_TwoLeaves = + RandomGraphFixture; +using TestRandomGraphFixture_Branch = + RandomGraphFixture; +using TestRandomGraphFixture_MultipleLevels = + RandomGraphFixture; using TestRandomGraphFixture_10_30 = RandomGraphFixture<10, 30>; template