Skip to content
Snippets Groups Projects
Commit 212f06d6 authored by Tinny Ng's avatar Tinny Ng
Browse files

[Bug 11981] inproper "AND" operator in AutoSense.hpp.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174182 13f79535-47bb-0310-9956-ffa450edef68
parent c43781ea
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.6 2002/08/23 20:56:00 tng
* [Bug 11981] inproper "AND" operator in AutoSense.hpp.
*
* Revision 1.5 2002/08/19 18:35:56 tng * Revision 1.5 2002/08/19 18:35:56 tng
* [Bug 6467] Installing Xerces C++ on cygwin environment. * [Bug 6467] Installing Xerces C++ on cygwin environment.
* *
...@@ -245,9 +248,9 @@ ...@@ -245,9 +248,9 @@
#elif defined(__xlC__) #elif defined(__xlC__)
#define XML_CSET #define XML_CSET
#elif defined(XML_SOLARIS) #elif defined(XML_SOLARIS)
#if defined(__SUNPRO_CC) & __SUNPRO_CC >=0x500 #if defined(__SUNPRO_CC) && (__SUNPRO_CC >=0x500)
#define XML_SUNCC5 #define XML_SUNCC5
#elif defined(__SUNPRO_CC) & __SUNPRO_CC <0x500 #elif defined(__SUNPRO_CC) && (__SUNPRO_CC <0x500)
#define XML_SUNCC #define XML_SUNCC
#elif defined(_EDG_RUNTIME_USES_NAMESPACES) #elif defined(_EDG_RUNTIME_USES_NAMESPACES)
#define XML_SOLARIS_KAICC #define XML_SOLARIS_KAICC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment