You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ca...@apache.org on 2005/07/27 14:34:59 UTC

svn commit: r225500 - /xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp

Author: cargilld
Date: Wed Jul 27 05:34:57 2005
New Revision: 225500

URL: http://svn.apache.org/viewcvs?rev=225500&view=rev
Log:
Schema errata E2-27: don't have negative sign in front of zero.

Modified:
    xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp

Modified: xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp?rev=225500&r1=225499&r2=225500&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp (original)
+++ xerces/c/branches/xerces-2.7/tests/XSValueTest/XSValueTest.cpp Wed Jul 27 05:34:57 2005
@@ -1555,13 +1555,13 @@
  *
  * The canonical representation for nonPositiveInteger is defined by prohibiting certain options from the 
  * Lexical representation (ยง3.3.14.1). Specifically, 
- * 1. the negative sign ("-") is required with the token "0" and 
+ * 1. the sign must be omitted for token "0" and 
  * 2. leading zeroes are prohibited.
  *
  ***/
 
     const char data_rawstr_1[]="   0    \n";
-    const char data_canrep_1[]="-0";
+    const char data_canrep_1[]="0";
     const char data_rawstr_2[]="-00012345";
     const char data_canrep_2[]="-12345";
    



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org