| 921 | return json; |
| 922 | } |
| 923 | std::string WriteJson(Json::Value const& value) |
| 924 | { |
| 925 | Json::StreamWriterBuilder writer; |
| 926 | writer["indentation"] = " "; |
| 927 | writer["commentStyle"] = "None"; |
| 928 | return Json::writeString(writer, value); |
| 929 | } |
| 930 | |
| 931 | #endif |
| 932 |
no test coverage detected
searching dependent graphs…