You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2001/11/07 15:25:37 UTC

cvs commit: xml-xerces/c/src/validators/schema/identity XercesXPath.cpp

knoaman     01/11/07 06:25:37

  Modified:    c/src/validators/schema TraverseSchema.cpp
               c/src/validators/schema/identity XercesXPath.cpp
  Log:
  Fix compliation error on Unix.
  
  Revision  Changes    Path
  1.56      +4 -4      xml-xerces/c/src/validators/schema/TraverseSchema.cpp
  
  Index: TraverseSchema.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/schema/TraverseSchema.cpp,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- TraverseSchema.cpp	2001/11/06 19:07:09	1.55
  +++ TraverseSchema.cpp	2001/11/07 14:25:32	1.56
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: TraverseSchema.cpp,v 1.55 2001/11/06 19:07:09 knoaman Exp $
  + * $Id: TraverseSchema.cpp,v 1.56 2001/11/07 14:25:32 knoaman Exp $
    */
   
   // ---------------------------------------------------------------------------
  @@ -170,9 +170,9 @@
   
   const XMLCh* fgIdentityConstraints[] =
   {
  -    { SchemaSymbols::fgELT_UNIQUE },
  -    { SchemaSymbols::fgELT_KEY },
  -    { SchemaSymbols::fgELT_KEYREF }
  +    SchemaSymbols::fgELT_UNIQUE,
  +    SchemaSymbols::fgELT_KEY,
  +    SchemaSymbols::fgELT_KEYREF
   };
   
   // ---------------------------------------------------------------------------
  
  
  
  1.2       +5 -2      xml-xerces/c/src/validators/schema/identity/XercesXPath.cpp
  
  Index: XercesXPath.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/schema/identity/XercesXPath.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XercesXPath.cpp	2001/11/02 14:08:40	1.1
  +++ XercesXPath.cpp	2001/11/07 14:25:36	1.2
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: XercesXPath.cpp,v $
  + * Revision 1.2  2001/11/07 14:25:36  knoaman
  + * Fix compliation error on Unix.
  + *
    * Revision 1.1  2001/11/02 14:08:40  knoaman
    * Add support for identity constraints.
    *
  @@ -607,7 +610,7 @@
   bool XPathScanner::scanExpression(const XMLCh* const data,
                                     int currentOffset,
                                     const int endOffset,
  -                                  ValueVectorOf<int>* tokens) {
  +                                  ValueVectorOf<int>* const tokens) {
   
       bool      starIsMultiplyOperator = false;
       int       nameOffset = -1;
  
  
  

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