Hi,
I found a bug in cppunit/TextTestRunner.h (which seems to be a backward
compatibility-header, thanks!). It is protected by the same header guard
as the file that it includes, namely CPPUNIT_TEXTTESTRUNNER_H.
solution: remove the header guard from cppunit/TextTestRunner.h and leave
it in cppunit/ui/text/TextTestRunner.h . The new content of
cppunit/TextTestRunner.h then is merely
------
#include <cppunit/ui/text/TextTestRunner.h>
------
Cheers,
Volker
|