We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 686c741 commit b8d1de8Copy full SHA for b8d1de8
src/taginfo.hpp
@@ -21,9 +21,9 @@ enum class column_type_t : std::uint8_t
21
TEXT
22
};
23
24
-struct Column
+struct column_t
25
{
26
- Column(std::string n, std::string tn, column_type_t t)
+ column_t(std::string n, std::string tn, column_type_t t)
27
: name(std::move(n)), type_name(std::move(tn)), type(t)
28
{}
29
@@ -32,6 +32,6 @@ struct Column
32
column_type_t type;
33
34
35
-using columns_t = std::vector<Column>;
+using columns_t = std::vector<column_t>;
36
37
#endif // OSM2PGSQL_TAGINFO_HPP
0 commit comments