You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by tn...@apache.org on 2001/02/05 21:01:39 UTC

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

tng         01/02/05 12:01:39

  Modified:    c/src/util/Compilers CSetDefs.hpp
  Log:
  define NO_NATIVE_BOOL macro only if not pre-defined/reserved
  
  Revision  Changes    Path
  1.10      +5 -0      xml-xerces/c/src/util/Compilers/CSetDefs.hpp
  
  Index: CSetDefs.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/Compilers/CSetDefs.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- CSetDefs.hpp	2000/10/17 00:52:00	1.9
  +++ CSetDefs.hpp	2001/02/05 20:01:39	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: CSetDefs.hpp,v $
  + * Revision 1.10  2001/02/05 20:01:39  tng
  + * define NO_NATIVE_BOOL macro only if not pre-defined/reserved
  + *
    * Revision 1.9  2000/10/17 00:52:00  andyh
    * Change XMLCh back to unsigned short on all platforms.
    *
  @@ -107,7 +110,9 @@
   // ---------------------------------------------------------------------------
   // Indicate that we do not support native bools
   // ---------------------------------------------------------------------------
  +#if !defined(__BOOL__)
   #define NO_NATIVE_BOOL
  +#endif
   
   
   // ---------------------------------------------------------------------------