Skip to content
Snippets Groups Projects
Commit 88866a20 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Pass string arguments by reference

parent 483d1b36
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
using namespace std; using namespace std;
extern void cluster(string config_file, string data_file, string output_path); extern void cluster(const string& config_file, const string& data_file, const string& output_path);
/*! \brief Main program entry point. /*! \brief Main program entry point.
* *
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
using namespace std; using namespace std;
extern void sphere(string config_file, string data_file, string output_path); extern void sphere(const string& config_file, const string& data_file, const string& output_path);
/*! \brief Main program entry point. /*! \brief Main program entry point.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment