File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ namespace boost::geometry::traits {
3535template <>
3636struct point_order<::geom::ring_t>
3737{
38+ // NOLINTNEXTLINE(readability-identifier-naming) - not in our namespace
3839 static order_selector const value = counterclockwise;
3940};
4041
Original file line number Diff line number Diff line change 2828 */
2929class progress_display_t : public osmium::handler::Handler
3030{
31- struct Counter
31+ struct counter_t
3232 {
3333 std::size_t count = 0;
3434 std::time_t start = 0;
@@ -79,9 +79,9 @@ class progress_display_t : public osmium::handler::Handler
7979 uint64_t rels_time(std::time_t now) const noexcept;
8080 uint64_t overall_time(std::time_t now) const noexcept;
8181
82- Counter m_node{};
83- Counter m_way{};
84- Counter m_rel{};
82+ counter_t m_node{};
83+ counter_t m_way{};
84+ counter_t m_rel{};
8585 std::time_t m_last_print_time{std::time(nullptr)};
8686 bool m_enabled;
8787};
You can’t perform that action at this time.
0 commit comments