Add kParseErrorTermination English error message.

This commit is contained in:
Milo Yip 2014-07-13 01:00:03 +08:00
parent b55fcbd36a
commit 025c516f82

View File

@ -38,6 +38,8 @@ inline const RAPIDJSON_ERROR_CHARTYPE* GetParseError_En(ParseErrorCode parseErro
case kParseErrorNumberMissFraction: return RAPIDJSON_ERROR_STRING("Miss fraction part in number.");
case kParseErrorNumberMissExponent: return RAPIDJSON_ERROR_STRING("Miss exponent in number.");
case kParseErrorTermination: return RAPIDJSON_ERROR_STRING("Parsing was terminated.");
default:
return RAPIDJSON_ERROR_STRING("Unknown error.");
}