Added missing Flush() in examples. Flush() will be called in Writer later.

git-svn-id: https://rapidjson.googlecode.com/svn/trunk@25 c5894555-1306-4e8d-425f-1f6f381ee07c
This commit is contained in:
miloyip@gmail.com 2011-11-21 18:54:22 +00:00
parent 04515a639e
commit d26a6e8b4d
2 changed files with 3 additions and 0 deletions

View File

@ -27,5 +27,7 @@ int main(int argc, char* argv[]) {
return 1;
}
os.Flush();
return 0;
}

View File

@ -24,5 +24,6 @@ int main(int argc, char* argv[]) {
return 1;
}
os.Flush();
return 0;
}