Skip to content

Commit

Permalink
fixing clang format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AsherGlick committed Sep 21, 2023
1 parent 35beb27 commit a2afc06
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions xml_converter/src/xml_converter.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include <dirent.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>

#include <algorithm>
Expand Down Expand Up @@ -437,7 +436,6 @@ void convert_taco_directory(string directory, string output_directory, map<strin
read_taco_directory(directory, marker_categories, parsed_pois);
}


////////////////////////////////////////////////////////////////////////////////
// process_data
//
Expand All @@ -446,8 +444,7 @@ void convert_taco_directory(string directory, string output_directory, map<strin
////////////////////////////////////////////////////////////////////////////////
void process_data(
vector<string> input_paths,
string output_directory
) {
string output_directory) {
auto begin = chrono::high_resolution_clock::now();

vector<Parseable*> parsed_pois;
Expand Down Expand Up @@ -483,7 +480,6 @@ void process_data(
cout << "The protobuf write function took " << ms << " milliseconds to run" << endl;
}


////////////////////////////////////////////////////////////////////////////////
// main
//
Expand All @@ -495,8 +491,7 @@ void process_data(
// ./xml_converter --input-path ../packs/marker_pack --output-path ../output_packs
// ./xml_converter --input-path ../packs/* --output-path ../output_packs
////////////////////////////////////////////////////////////////////////////////
int main(int argc, char *argv[]) {

int main(int argc, char* argv[]) {
vector<string> input_paths;

// Typically "~/.local/share/godot/app_userdata/Burrito/protobins" for
Expand Down

0 comments on commit a2afc06

Please sign in to comment.