Skip to content

Commit 5253461

Browse files
committed
Rename parameter "do_append" to "append" for consistency
1 parent 1261953 commit 5253461

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/parse-osmium.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ void parse_stats_t::possibly_print_status()
7272
print_status(now);
7373
}
7474

75-
parse_osmium_t::parse_osmium_t(osmium::Box const &bbox, bool do_append,
75+
parse_osmium_t::parse_osmium_t(osmium::Box const &bbox, bool append,
7676
osmdata_t *osmdata)
77-
: m_data(osmdata), m_bbox(bbox), m_append(do_append)
77+
: m_data(osmdata), m_bbox(bbox), m_append(append)
7878
{}
7979

8080
void parse_osmium_t::stream_file(std::string const &filename,

src/parse-osmium.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class parse_stats_t
130130
class parse_osmium_t : public osmium::handler::Handler
131131
{
132132
public:
133-
parse_osmium_t(osmium::Box const &bbox, bool do_append, osmdata_t *osmdata);
133+
parse_osmium_t(osmium::Box const &bbox, bool append, osmdata_t *osmdata);
134134

135135
void stream_file(std::string const &filename, std::string const &fmt);
136136

0 commit comments

Comments
 (0)