|
21 | 21 |
|
22 | 22 | class reprojection; |
23 | 23 |
|
24 | | -enum class command_t |
| 24 | +enum class command_t : uint8_t |
25 | 25 | { |
26 | 26 | help, |
27 | 27 | version, |
@@ -53,30 +53,30 @@ struct options_t |
53 | 53 | bool prefix_is_set = false; |
54 | 54 |
|
55 | 55 | /// Pg Tablespace to store indexes on main tables (no default TABLESPACE) |
56 | | - std::string tblsmain_index{}; |
| 56 | + std::string tblsmain_index; |
57 | 57 |
|
58 | 58 | /// Pg Tablespace to store indexes on slim tables (no default TABLESPACE) |
59 | | - std::string tblsslim_index{}; |
| 59 | + std::string tblsslim_index; |
60 | 60 |
|
61 | 61 | /// Pg Tablespace to store main tables (no default TABLESPACE) |
62 | | - std::string tblsmain_data{}; |
| 62 | + std::string tblsmain_data; |
63 | 63 |
|
64 | 64 | /// Pg Tablespace to store slim tables (no default TABLESPACE) |
65 | | - std::string tblsslim_data{}; |
| 65 | + std::string tblsslim_data; |
66 | 66 |
|
67 | 67 | /// Default Pg schema. |
68 | 68 | std::string dbschema{"public"}; |
69 | 69 |
|
70 | 70 | /// Pg schema to store middle tables in. |
71 | | - std::string middle_dbschema{}; |
| 71 | + std::string middle_dbschema; |
72 | 72 |
|
73 | 73 | /// Pg schema to store output tables in. |
74 | | - std::string output_dbschema{}; |
| 74 | + std::string output_dbschema; |
75 | 75 |
|
76 | | - std::string style{}; ///< style file to use |
| 76 | + std::string style; ///< style file to use |
77 | 77 |
|
78 | 78 | /// Name of the flat node file used. Empty if flat node file is not enabled. |
79 | | - std::string flat_node_file{}; |
| 79 | + std::string flat_node_file; |
80 | 80 |
|
81 | 81 | std::string tag_transform_script; |
82 | 82 |
|
|
0 commit comments