C++ - Typo in JsonCodec.cc
--------------------------
Key: AVRO-954
URL: https://issues.apache.org/jira/browse/AVRO-954
Project: Avro
Issue Type: Bug
Components: c++
Affects Versions: 1.6.0
Reporter: Nebojsa Sabovic
Assignee: Nebojsa Sabovic
Priority: Minor
JsonCodec.cc has a line that reads: if (isdigit(ch) || '-')
This doesn't do anything useful, we should change it to read: if (isdigit(ch)
|| ch == '-')
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira