File tree Expand file tree Collapse file tree 7 files changed +10
-9
lines changed
include/jsoncons_ext/mergepatch Expand file tree Collapse file tree 7 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ Changes:
10
10
11
11
- For consistency with library naming conventions, the directory
12
12
` include/jsoncons/json_merge_patch ` has been renamed to
13
- ` include/jsoncons/mergepatch ` , and the namespace ` json_merge_patch `
14
- has been renamed to ` mergepatch ` .
13
+ ` include/jsoncons/mergepatch ` , the namespace ` json_merge_patch `
14
+ to ` mergepatch ` , and the include file ` json_merge_patch.hpp ` to
15
+ ` mergepatch.hpp ` .
15
16
16
17
0.168.7
17
18
-------
Original file line number Diff line number Diff line change 1
1
### jsoncons::mergepatch::apply_merge_patch
2
2
3
3
``` c++
4
- #include < jsoncons_ext/mergepatch/json_merge_patch .hpp>
4
+ #include < jsoncons_ext/mergepatch/mergepatch .hpp>
5
5
6
6
template <class Json >
7
7
void apply_merge_patch (Json& target, const Json& patch);
@@ -25,7 +25,7 @@ This example is from [RFC 7386](https://datatracker.ietf.org/doc/html/rfc7386#se
25
25
26
26
```c++
27
27
#include <jsoncons/json.hpp>
28
- #include <jsoncons_ext/mergepatch/json_merge_patch .hpp>
28
+ #include <jsoncons_ext/mergepatch/mergepatch .hpp>
29
29
30
30
using jsoncons::json;
31
31
namespace mergepatch = jsoncons::mergepatch;
Original file line number Diff line number Diff line change 1
1
### jsoncons::mergepatch::from_diff
2
2
3
3
``` c++
4
- #include < jsoncons_ext/mergepatch/json_merge_patch .hpp>
4
+ #include < jsoncons_ext/mergepatch/mergepatch .hpp>
5
5
6
6
template <class Json >
7
7
Json from_diff (const Json& source, const Json& target)
@@ -21,7 +21,7 @@ This example is from [RFC 7386](https://datatracker.ietf.org/doc/html/rfc7386#se
21
21
22
22
```c++
23
23
#include <jsoncons/json.hpp>
24
- #include <jsoncons_ext/mergepatch/json_merge_patch .hpp>
24
+ #include <jsoncons_ext/mergepatch/mergepatch .hpp>
25
25
26
26
using jsoncons::json;
27
27
namespace mergepatch = jsoncons::mergepatch;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ This example is from [RFC 7386](https://datatracker.ietf.org/doc/html/rfc7386#se
19
19
20
20
``` c++
21
21
#include < jsoncons/json.hpp>
22
- #include < jsoncons_ext/mergepatch/json_merge_patch .hpp>
22
+ #include < jsoncons_ext/mergepatch/mergepatch .hpp>
23
23
24
24
using jsoncons::json;
25
25
namespace mergepatch = jsoncons::mergepatch;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ add_executable(unit_tests
82
82
fuzz_regression/src/fuzz_regression_tests.cpp
83
83
jmespath/src/jmespath_expression_tests.cpp
84
84
jmespath/src/jmespath_tests.cpp
85
- mergepatch/src/json_merge_patch_test_suite .cpp
85
+ mergepatch/src/mergepatch_test_suite .cpp
86
86
jsonpatch/src/jsonpatch_test_suite.cpp
87
87
jsonpatch/src/jsonpatch_tests.cpp
88
88
jsonpath/src/jsonpath_flatten_tests.cpp
Original file line number Diff line number Diff line change 6
6
#endif
7
7
#include < iostream>
8
8
#include < jsoncons/json.hpp>
9
- #include < jsoncons_ext/mergepatch/json_merge_patch .hpp>
9
+ #include < jsoncons_ext/mergepatch/mergepatch .hpp>
10
10
#include < catch/catch.hpp>
11
11
#include < iostream>
12
12
#include < sstream>
You can’t perform that action at this time.
0 commit comments