Skip to content

Commit b8d1de8

Browse files
committed
Rename struct Column to column_t
1 parent 686c741 commit b8d1de8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/taginfo.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ enum class column_type_t : std::uint8_t
2121
TEXT
2222
};
2323

24-
struct Column
24+
struct column_t
2525
{
26-
Column(std::string n, std::string tn, column_type_t t)
26+
column_t(std::string n, std::string tn, column_type_t t)
2727
: name(std::move(n)), type_name(std::move(tn)), type(t)
2828
{}
2929

@@ -32,6 +32,6 @@ struct Column
3232
column_type_t type;
3333
};
3434

35-
using columns_t = std::vector<Column>;
35+
using columns_t = std::vector<column_t>;
3636

3737
#endif // OSM2PGSQL_TAGINFO_HPP

0 commit comments

Comments
 (0)