Skip to content

Commit

Permalink
Fix intend
Browse files Browse the repository at this point in the history
  • Loading branch information
h46incon committed Jan 9, 2018
1 parent a5648d4 commit a346863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rapidjson/writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ class Writer {
bool WriteRawNumber(const Ch* json, size_t length) {
PutReserve(*os_, length);
for (size_t i = 0; i < length; i++) {
RAPIDJSON_ASSERT(json[i] > 0 && json[i] < 128);
RAPIDJSON_ASSERT(json[i] > 0 && json[i] < 128);
PutUnsafe(*os_, static_cast<typename OutputStream::Ch>(json[i]));
}
return true;
Expand Down

0 comments on commit a346863

Please sign in to comment.