Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pistache
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
pistache
Commits
2907b39e
Unverified
Commit
2907b39e
authored
Jul 27, 2018
by
Dennis Jenkins
Committed by
GitHub
Jul 27, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into 249-building-and-running-tests
parents
652d1e0b
957198b8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
README.md
README.md
+1
-1
include/pistache/serializer/rapidjson.h
include/pistache/serializer/rapidjson.h
+1
-1
No files found.
README.md
View file @
2907b39e
...
@@ -38,7 +38,7 @@ Now, compile the sources:
...
@@ -38,7 +38,7 @@ Now, compile the sources:
If you want the examples built, then change change the cmake above to:
If you want the examples built, then change change the cmake above to:
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -D
C
PISTACHE_BUILD_EXAMPLES=true ..
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DPISTACHE_BUILD_EXAMPLES=true ..
After running the above, you can then cd into the build/examples directory and run make.
After running the above, you can then cd into the build/examples directory and run make.
...
...
include/pistache/serializer/rapidjson.h
View file @
2907b39e
...
@@ -202,7 +202,7 @@ void serializeDescription(Writer& writer, const Description& desc) {
...
@@ -202,7 +202,7 @@ void serializeDescription(Writer& writer, const Description& desc) {
writer
.
EndObject
();
writer
.
EndObject
();
}
}
std
::
string
rapidJson
(
const
Description
&
desc
)
{
inline
std
::
string
rapidJson
(
const
Description
&
desc
)
{
rapidjson
::
StringBuffer
sb
;
rapidjson
::
StringBuffer
sb
;
rapidjson
::
PrettyWriter
<
rapidjson
::
StringBuffer
>
writer
(
sb
);
rapidjson
::
PrettyWriter
<
rapidjson
::
StringBuffer
>
writer
(
sb
);
serializeDescription
(
writer
,
desc
);
serializeDescription
(
writer
,
desc
);
...
...
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