Skip to content
Snippets Groups Projects
Commit 09700906 authored by Unknown (roddey)'s avatar Unknown (roddey)
Browse files

Added a define of XML_LSTRSUPPORT to indicate supoprt of L"" type

prefixes on this compiler.


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171560 13f79535-47bb-0310-9956-ffa450edef68
parent b7cd28b2
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,10 @@ ...@@ -56,6 +56,10 @@
/** /**
* $Log$ * $Log$
* Revision 1.4 2000/01/14 01:19:22 roddey
* Added a define of XML_LSTRSUPPORT to indicate supoprt of L"" type
* prefixes on this compiler.
*
* Revision 1.3 2000/01/14 00:51:30 roddey * Revision 1.3 2000/01/14 00:51:30 roddey
* Added the requested XMLStrL() macro to support some portable * Added the requested XMLStrL() macro to support some portable
* optimization of DOM code. This still needs to be added to the other * optimization of DOM code. This still needs to be added to the other
...@@ -85,11 +89,12 @@ ...@@ -85,11 +89,12 @@
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Each compiler might support L"" prefixed constants. There are places in // Each compiler might support L"" prefixed constants. There are places
// the DOM for instance, where it is advantageous to use the L"" where it // where it is advantageous to use the L"" where it supported, to avoid
// supported, to avoid unnecessary transcoding. VC++ does support this. // unnecessary transcoding. VC++ does support this, so we define this token.
// If your compiler does not support it, don't define this.
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
#define XMLStrL(str) L##str #define XML_LSTRSUPPORT
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
......
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