minor fix for code examples

This commit is contained in:
Jack Ullery 2021-08-12 13:18:22 -04:00
parent 65bb1b1c1d
commit 4b338035a4
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include "json/json.h"
#include <iostream>
#include <memory>
/**
* \brief Parse a raw string into Value object using the CharReaderBuilder
* class, or the legacy Reader class.

View File

@ -1,5 +1,6 @@
#include "json/json.h"
#include <iostream>
#include <memory>
/** \brief Write the Value object to a stream.
* Example Usage:
* $g++ streamWrite.cpp -ljsoncpp -std=c++11 -o streamWrite