Skip to content
Snippets Groups Projects
Commit cfefe988 authored by David Abram Cargill's avatar David Abram Cargill
Browse files

Schema errata E2-27: don't have negative sign in front of zero.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@225502 13f79535-47bb-0310-9956-ffa450edef68
parent b8b60c89
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ XERCES_CPP_NAMESPACE_BEGIN ...@@ -34,7 +34,7 @@ XERCES_CPP_NAMESPACE_BEGIN
XMLCh* XMLBigInteger::getCanonicalRepresentation(const XMLCh* const rawData XMLCh* XMLBigInteger::getCanonicalRepresentation(const XMLCh* const rawData
, MemoryManager* const memMgr , MemoryManager* const memMgr
, bool isNonPositiveInteger) , bool /* isNonPositiveInteger */)
{ {
try try
{ {
...@@ -46,17 +46,8 @@ XMLCh* XMLBigInteger::getCanonicalRepresentation(const XMLCh* const rawD ...@@ -46,17 +46,8 @@ XMLCh* XMLBigInteger::getCanonicalRepresentation(const XMLCh* const rawD
if (sign == 0) if (sign == 0)
{ {
if (isNonPositiveInteger) retBuf[0] = chDigit_0;
{ retBuf[1] = chNull;
retBuf[0] = chDash;
retBuf[1] = chDigit_0;
retBuf[2] = chNull;
}
else
{
retBuf[0] = chDigit_0;
retBuf[1] = chNull;
}
} }
else if (sign == -1) else if (sign == -1)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment