commit | 6ed877c77cde496a915c584343d16397df25c6ff | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Thu Jul 23 00:25:56 2015 -0500 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Thu Jul 23 00:26:13 2015 -0500 |
tree | 4683a9ef5a2e47934e680279d4986ae03e80d37c | |
parent | 1c69568f8dcb8052c6a4d179f10f1db79e69f5ca [diff] |
correction for #316
diff --git a/src/lib_json/json_tool.h b/src/lib_json/json_tool.h index 2de0d83..e65e51b 100644 --- a/src/lib_json/json_tool.h +++ b/src/lib_json/json_tool.h
@@ -43,7 +43,7 @@ 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 {