Using the 1.9.8 snapshot, I've been working on towards Borland C++ Builder 5
DLLs. I finally have the library options correct enough that nothing blows up
-- although I'm still working on TestRunner that'll work in my GUI environment.
During my work though, I discovered the following:
1. I think PlugInManager.cpp is missing a
#if !defined(CPPUNIT_NO_TESTPLUGIN)
#endif
section to match what is in the PlugInManager.h file.
2. XmlDocument::setEncoding generates a "Two operands must evaluate to the same
type" compiler error unless "ISO..." is wrapped like
std::string( "ISO-8859-1" )
|