Merge pull request #27 from k0zmo/const-pair

iterate over pair of const string and Json
pull/5/head
j4cbo 2015-01-08 13:41:49 -08:00
commit 51166ddca6
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ static void dump(const string &value, string &out) {
static void dump(const Json::array &values, string &out) {
bool first = true;
out += "[";
for (auto &value : values) {
for (const auto &value : values) {
if (!first)
out += ", ";
value.dump(out);
@ -112,7 +112,7 @@ static void dump(const Json::array &values, string &out) {
static void dump(const Json::object &values, string &out) {
bool first = true;
out += "{";
for (const std::pair<string, Json> &kv : values) {
for (const auto &kv : values) {
if (!first)
out += ", ";
dump(kv.first, out);