Skip to content

Commit

Permalink
correction for open-source-parsers#316
Browse files Browse the repository at this point in the history
  • Loading branch information
cdunn2001 committed Jul 23, 2015
1 parent 1c69568 commit 6ed877c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_json/json_tool.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static inline std::string codePointToUTF8(unsigned int cp) {
return result;
}

/// Returns true if ch is a control character (in range [0,32]).
/// Returns true if ch is a control character (in range [1,31]).
static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }

enum {
Expand Down

0 comments on commit 6ed877c

Please sign in to comment.