Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/geom-boost-adaptor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ namespace boost::geometry::traits {
template <>
struct point_order<::geom::ring_t>
{
// NOLINTNEXTLINE(readability-identifier-naming) - not in our namespace
static order_selector const value = counterclockwise;
};

Expand Down
8 changes: 4 additions & 4 deletions src/progress-display.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*/
class progress_display_t : public osmium::handler::Handler
{
struct Counter
struct counter_t
{
std::size_t count = 0;
std::time_t start = 0;
Expand Down Expand Up @@ -79,9 +79,9 @@ class progress_display_t : public osmium::handler::Handler
uint64_t rels_time(std::time_t now) const noexcept;
uint64_t overall_time(std::time_t now) const noexcept;

Counter m_node{};
Counter m_way{};
Counter m_rel{};
counter_t m_node{};
counter_t m_way{};
counter_t m_rel{};
std::time_t m_last_print_time{std::time(nullptr)};
bool m_enabled;
};
Expand Down