Commit 3ca1bfdd authored by Niels's avatar Niels

made a function static

parent f4107d0d
...@@ -9227,7 +9227,7 @@ basic_json_parser_63: ...@@ -9227,7 +9227,7 @@ basic_json_parser_63:
} }
/// split the string input to reference tokens /// split the string input to reference tokens
std::vector<std::string> split(std::string reference_string) static std::vector<std::string> split(std::string reference_string)
{ {
std::vector<std::string> result; std::vector<std::string> result;
......
...@@ -8537,7 +8537,7 @@ class basic_json ...@@ -8537,7 +8537,7 @@ class basic_json
} }
/// split the string input to reference tokens /// split the string input to reference tokens
std::vector<std::string> split(std::string reference_string) static std::vector<std::string> split(std::string reference_string)
{ {
std::vector<std::string> result; std::vector<std::string> result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment