Skip to content

Commit 6412a21

Browse files
committed
Fix according to our naming rules
1 parent f4be7c5 commit 6412a21

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/geom-boost-adaptor.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ namespace boost::geometry::traits {
3535
template <>
3636
struct point_order<::geom::ring_t>
3737
{
38+
// NOLINTNEXTLINE(readability-identifier-naming) - not in our namespace
3839
static order_selector const value = counterclockwise;
3940
};
4041

src/progress-display.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
class 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
};

0 commit comments

Comments
 (0)