Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
d3b0f207
Commit
d3b0f207
authored
Jun 08, 2015
by
Niels
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #85 from ahamez/master
Avoid warning with Xcode's clang
parents
adc065d3
f17733b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
json.hpp.re2c
src/json.hpp.re2c
+2
-3
No files found.
src/json.hpp.re2c
View file @
d3b0f207
...
...
@@ -1983,15 +1983,14 @@ class basic_json
o.width(0);
// do the actual serialization
j.dump(o, prettyPrint,
indentation
);
j.dump(o, prettyPrint,
static_cast<int>(indentation)
);
return o;
}
/// serialize to stream
friend std::ostream& operator>>(const basic_json& j, std::ostream& o)
{
o << j;
return o;
return o << j;
}
...
...
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