Update of /cvsroot/cpptool/rfta/deplib/cppunit/include/cppunit/config
In directory sc8-pr-cvs1:/tmp/cvs-serv17749/deplib/cppunit/include/cppunit/config
Modified Files:
config-msvc6.h
Log Message:
* 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.
Index: config-msvc6.h
===================================================================
RCS file: /cvsroot/cpptool/rfta/deplib/cppunit/include/cppunit/config/config-msvc6.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** config-msvc6.h 23 Oct 2002 20:25:06 -0000 1.1.1.1
--- config-msvc6.h 15 May 2003 07:06:00 -0000 1.2
***************
*** 52,56 ****
// See class CompilerOutputter for format.
#undef CPPUNIT_COMPILER_LOCATION_FORMAT
! #define CPPUNIT_COMPILER_LOCATION_FORMAT "%p(%l):"
// Uncomment to turn on STL wrapping => use this to test compilation.
--- 52,60 ----
// See class CompilerOutputter for format.
#undef CPPUNIT_COMPILER_LOCATION_FORMAT
! #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.
|