diff options
Diffstat (limited to 'include/cppunit')
| -rw-r--r-- | include/cppunit/config/config-msvc6.h | 6 |
1 files changed, 5 insertions, 1 deletions
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 |
