please open a bugzilla bug. thx! ----- Original Message ----- From: "Juergen Hermann" <[EMAIL PROTECTED]> To: "Xerces-C++ Development" <[EMAIL PROTECTED]> Sent: Thursday, November 07, 2002 6:15 AM Subject: Indentifier collision witg Python
Hi, Tinny! xercesc/util/regx/RegxParser.hpp defines T_CHAR and T_STRING as enum constants (BTW, why do you assign explicit numbers, instead of letting the computer do it?). Unfortunately, Python #define's the same identifiers, and we all know how aware of scopes #define is. So, could we rename those symbols (I think they're rather internal ones, so no library user should notice that) to be mixed-cased, to avoid name clashes with CPP symbols? My proposal would be T_CHAR ==> T_Char etc. Ciao, J�rgen -- J�rgen Hermann, Developer WEB.DE AG, http://webde-ag.de/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
