You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ab...@locus.apache.org on 2000/01/13 02:39:11 UTC

cvs commit: xml-xerces/c/src/util/Compilers GCCDefs.hpp

abagchi     00/01/12 17:39:11

  Modified:    c/src/util/Compilers GCCDefs.hpp
  Log:
  Changed unsigned short to wchar_t for XMLCh
  
  Revision  Changes    Path
  1.4       +5 -1      xml-xerces/c/src/util/Compilers/GCCDefs.hpp
  
  Index: GCCDefs.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Compilers/GCCDefs.hpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GCCDefs.hpp	1999/11/12 20:36:54	1.3
  +++ GCCDefs.hpp	2000/01/13 01:39:11	1.4
  @@ -56,6 +56,9 @@
   
   /**
    * $Log: GCCDefs.hpp,v $
  + * Revision 1.4  2000/01/13 01:39:11  abagchi
  + * Changed unsigned short to wchar_t for XMLCh
  + *
    * Revision 1.3  1999/11/12 20:36:54  rahulj
    * Changed library name to xerces-c.lib.
    *
  @@ -84,7 +87,8 @@
   // ---------------------------------------------------------------------------
   //  Define our version of the XML character
   // ---------------------------------------------------------------------------
  -typedef unsigned short XMLCh;
  +// typedef unsigned short XMLCh; // is another option, now considered old
  +typedef wchar_t XMLCh;
   
   
   // ---------------------------------------------------------------------------