Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
klingbolt committed Nov 5, 2023
1 parent c20b184 commit d15d337
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xml_converter/src/xml_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ void read_taco_directory(string input_path, map<string, Category>* marker_catego
void write_taco_directory(string output_path, map<string, Category>* marker_categories, vector<Parseable*>* parsed_pois) {
// TODO: Exportion of XML Marker Packs File Structure #111
string xml_filepath;
if (!has_suffix(output_path, "/")){
if (!has_suffix(output_path, "/")) {
output_path += "/";
xml_filepath = output_path + "xml_file.xml";
}
else {
xml_filepath = output_path;
}
xml_filepath = output_path;
}

if (!filesystem::is_directory(output_path)) {
if (!filesystem::create_directory(output_path)) {
Expand Down

0 comments on commit d15d337

Please sign in to comment.