From 341d0a8b1b645d4d125bedb11c4514fdbaf504ca Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Thu, 15 May 2003 05:31:52 +0000 Subject: include/cppunit/config/config-msvc6.h: changed the compiler outputter default format (CPPUNIT_COMPILER_LOCATION_FORMAT) for Visual Studio 7.0. Assertion now appears in the task list. --- include/cppunit/config/config-msvc6.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/cppunit/config') diff --git a/include/cppunit/config/config-msvc6.h b/include/cppunit/config/config-msvc6.h index da540cc..51df8af 100644 --- a/include/cppunit/config/config-msvc6.h +++ b/include/cppunit/config/config-msvc6.h @@ -51,7 +51,11 @@ // Compiler error location format for CompilerOutputter // See class CompilerOutputter for format. #undef CPPUNIT_COMPILER_LOCATION_FORMAT -#define CPPUNIT_COMPILER_LOCATION_FORMAT "%p(%l):" +#if _MSC_VER >= 1300 // VS 7.0 +# define CPPUNIT_COMPILER_LOCATION_FORMAT "%p(%l) : error : " +#else +# define CPPUNIT_COMPILER_LOCATION_FORMAT "%p(%l):" +#endif // Uncomment to turn on STL wrapping => use this to test compilation. // This will make CppUnit subclass std::vector & co to provide default -- cgit v1.2.1