diff options
author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2005-07-30 06:04:07 +0000 |
---|---|---|
committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2005-07-30 06:04:07 +0000 |
commit | 9415e6166a3624e0e37eaaaf00e419df8347dba3 (patch) | |
tree | 4673b7ed0be9bd5022ca0d514b3178d284db15ce /include/cppunit | |
parent | 19427bd102eb200956a2d683081513f7b39cae6c (diff) | |
download | cppunit-9415e6166a3624e0e37eaaaf00e419df8347dba3.tar.gz |
include/cppunit/config/config-msvc6.h: added missing macro definition
CPPUNIT_HAVE_CPP_CAST.
Diffstat (limited to 'include/cppunit')
-rw-r--r-- | include/cppunit/config/config-msvc6.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cppunit/config/config-msvc6.h b/include/cppunit/config/config-msvc6.h index b2664e8..a1b0af2 100644 --- a/include/cppunit/config/config-msvc6.h +++ b/include/cppunit/config/config-msvc6.h @@ -61,6 +61,10 @@ # define CPPUNIT_COMPILER_LOCATION_FORMAT "%p(%l):" #endif +// Define to 1 if the compiler support C++ style cast. +#define CPPUNIT_HAVE_CPP_CAST 1 + + // Uncomment to turn on STL wrapping => use this to test compilation. // This will make CppUnit subclass std::vector & co to provide default // parameter. |