Merge branch 'develop' into feature/iterator_range_parsing
This commit is contained in:
commit
f791c5fd2e
4 changed files with 10 additions and 4 deletions
|
|
@ -9528,7 +9528,7 @@ basic_json_parser_63:
|
|||
}
|
||||
|
||||
/// split the string input to reference tokens
|
||||
static std::vector<std::string> split(std::string reference_string)
|
||||
static std::vector<std::string> split(const std::string& reference_string)
|
||||
{
|
||||
std::vector<std::string> result;
|
||||
|
||||
|
|
@ -10256,7 +10256,7 @@ basic_json_parser_63:
|
|||
*/
|
||||
static basic_json diff(const basic_json& source,
|
||||
const basic_json& target,
|
||||
std::string path = "")
|
||||
const std::string& path = "")
|
||||
{
|
||||
// the patch
|
||||
basic_json result(value_t::array);
|
||||
|
|
|
|||
|
|
@ -8825,7 +8825,7 @@ class basic_json
|
|||
}
|
||||
|
||||
/// split the string input to reference tokens
|
||||
static std::vector<std::string> split(std::string reference_string)
|
||||
static std::vector<std::string> split(const std::string& reference_string)
|
||||
{
|
||||
std::vector<std::string> result;
|
||||
|
||||
|
|
@ -9553,7 +9553,7 @@ class basic_json
|
|||
*/
|
||||
static basic_json diff(const basic_json& source,
|
||||
const basic_json& target,
|
||||
std::string path = "")
|
||||
const std::string& path = "")
|
||||
{
|
||||
// the patch
|
||||
basic_json result(value_t::array);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue