Details
Description
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.