There's a problem with compiling under builder 5.  This is cured by changing AutoSense.hpp
where it is checking for the compiler from
 
#if defined(_MSC_VER)
    #define XML_VISUALCPP
#elif defined(__BORLANDC__)
    #define XML_BORLAND
 
to
 
#if defined(__BORLANDC__)
    #define XML_BORLAND
#elif defined(_MSC_VER)
    #define XML_VISUALCPP
 
 
Something somewhere is setting _MSC_VER, but I haven't time to track down what and this seems to work fine.
 
Martin Slater
 

Reply via email to