Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
3f97a5d5
Commit
3f97a5d5
authored
Jun 22, 2016
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
a conceptual quick fix for #269
parent
15a314ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
src/json.hpp
src/json.hpp
+5
-2
src/json.hpp.re2c
src/json.hpp.re2c
+5
-2
No files found.
src/json.hpp
View file @
3f97a5d5
...
@@ -10002,13 +10002,16 @@ basic_json_parser_63:
...
@@ -10002,13 +10002,16 @@ basic_json_parser_63:
// in a second pass, traverse the remaining elements
// in a second pass, traverse the remaining elements
// remove my remaining elements
// remove my remaining elements
const
auto
end_index
=
static_cast
<
difference_type
>
(
result
.
size
());
while
(
i
<
source
.
size
())
while
(
i
<
source
.
size
())
{
{
result
.
push_back
(
object
(
// add operations in reverse order to avoid invalid
// indices
result
.
insert
(
result
.
begin
()
+
end_index
,
{
{
{
"op"
,
"remove"
},
{
"op"
,
"remove"
},
{
"path"
,
path
+
"/"
+
std
::
to_string
(
i
)}
{
"path"
,
path
+
"/"
+
std
::
to_string
(
i
)}
})
)
;
});
++
i
;
++
i
;
}
}
...
...
src/json.hpp.re2c
View file @
3f97a5d5
...
@@ -9312,13 +9312,16 @@ class basic_json
...
@@ -9312,13 +9312,16 @@ class basic_json
// in a second pass, traverse the remaining elements
// in a second pass, traverse the remaining elements
// remove my remaining elements
// remove my remaining elements
const auto end_index = static_cast<difference_type>(result.size());
while (i < source.size())
while (i < source.size())
{
{
result.push_back(object(
// add operations in reverse order to avoid invalid
// indices
result.insert(result.begin() + end_index,
{
{
{"op", "remove"},
{"op", "remove"},
{"path", path + "/" + std::to_string(i)}
{"path", path + "/" + std::to_string(i)}
})
)
;
});
++i;
++i;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment