You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ar...@locus.apache.org on 2000/01/18 22:32:21 UTC

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

aruna1      00/01/18 13:32:21

  Modified:    c/src/util/Compilers HPCCDefs.hpp
  Log:
  XMLCh assigned to wchar_t
  
  Revision  Changes    Path
  1.6       +14 -1     xml-xerces/c/src/util/Compilers/HPCCDefs.hpp
  
  Index: HPCCDefs.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Compilers/HPCCDefs.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HPCCDefs.hpp	1999/12/14 23:53:25	1.5
  +++ HPCCDefs.hpp	2000/01/18 21:32:21	1.6
  @@ -56,6 +56,9 @@
   
   /**
    * $Log: HPCCDefs.hpp,v $
  + * Revision 1.6  2000/01/18 21:32:21  aruna1
  + * XMLCh assigned to wchar_t
  + *
    * Revision 1.5  1999/12/14 23:53:25  rahulj
    * Removed the offending Ctrl-M's from the commit message
    * logs which was giving packaging problems.
  @@ -99,7 +102,11 @@
   // ---------------------------------------------------------------------------
   //  Define our version of the XML character
   // ---------------------------------------------------------------------------
  -typedef unsigned short XMLCh;
  +#ifndef INCLUDE_THIS_FILE
  +#define INCLUDE_THIS_FILE
  +#include <wchar.h>
  +#endif
  +typedef wchar_t XMLCh;
   typedef unsigned short UTF16Ch;