Skip to content

Commit

Permalink
made a function static
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Apr 17, 2016
1 parent f4107d0 commit 3ca1bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9227,7 +9227,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;

Expand Down
2 changes: 1 addition & 1 deletion src/json.hpp.re2c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 3ca1bfd

Please sign in to comment.