mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 10:55:57 +02:00
switch from StyledWriter to StyledStream writer in tests
This commit is contained in:
parent
ee8b58f82f
commit
2160c9a042
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
#include <algorithm> // sort
|
#include <algorithm> // sort
|
||||||
|
#include <sstream>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER >= 1310
|
#if defined(_MSC_VER) && _MSC_VER >= 1310
|
||||||
@ -158,8 +159,10 @@ static int rewriteValueTree(const std::string& rewritePath,
|
|||||||
std::string& rewrite) {
|
std::string& rewrite) {
|
||||||
// Json::FastWriter writer;
|
// Json::FastWriter writer;
|
||||||
// writer.enableYAMLCompatibility();
|
// writer.enableYAMLCompatibility();
|
||||||
Json::StyledWriter writer;
|
Json::StyledStreamWriter writer;
|
||||||
rewrite = writer.write(root);
|
std::ostringstream sout;
|
||||||
|
writer.write(sout, root);
|
||||||
|
rewrite = sout.str();
|
||||||
FILE* fout = fopen(rewritePath.c_str(), "wt");
|
FILE* fout = fopen(rewritePath.c_str(), "wt");
|
||||||
if (!fout) {
|
if (!fout) {
|
||||||
printf("Failed to create rewrite file: %s\n", rewritePath.c_str());
|
printf("Failed to create rewrite file: %s\n", rewritePath.c_str());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user