made a function static
This commit is contained in:
parent
f4107d0d9c
commit
3ca1bfdd9d
2 changed files with 2 additions and 2 deletions
|
@ -9227,7 +9227,7 @@ basic_json_parser_63:
|
|||
}
|
||||
|
||||
/// 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;
|
||||
|
||||
|
|
|
@ -8537,7 +8537,7 @@ class basic_json
|
|||
}
|
||||
|
||||
/// 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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue