diff options
author | Steve M. Robbins <smr@sumost.ca> | 2001-07-06 00:31:25 +0000 |
---|---|---|
committer | Steve M. Robbins <smr@sumost.ca> | 2001-07-06 00:31:25 +0000 |
commit | a90452b2ef0c9366118ae1be78d798a0198ae363 (patch) | |
tree | 7ad83daa72ff5a84609528e57bdc50b86c28309f /include/cppunit/extensions/HelperMacros.h | |
parent | 83766a55021bea4fa506ece7ad0be11c6dcff6f8 (diff) | |
download | cppunit-a90452b2ef0c9366118ae1be78d798a0198ae363.tar.gz |
Change from CPPUNIT_USE_TYPEINFO to CPPUNIT_USE_TYPEINFO_NAME
Diffstat (limited to 'include/cppunit/extensions/HelperMacros.h')
-rw-r--r-- | include/cppunit/extensions/HelperMacros.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/extensions/HelperMacros.h b/include/cppunit/extensions/HelperMacros.h index e3355e1..3a10ba7 100644 --- a/include/cppunit/extensions/HelperMacros.h +++ b/include/cppunit/extensions/HelperMacros.h @@ -14,11 +14,11 @@ // The macro __CPPUNIT_SUITE_CTOR_ARGS expand to an expression used to construct // the TestSuiteBuilder with macro CPPUNIT_TEST_SUITE. // -// The name of the suite is obtained using RTTI if CPPUNIT_USE_TYPEINFO is -// defined, otherwise it is extracted from the macro parameter +// The name of the suite is obtained using RTTI if CPPUNIT_USE_TYPEINFO_NAME +// is defined, otherwise it is extracted from the macro parameter // // This macro is for cppunit internal and should not be use otherwise. -#if CPPUNIT_USE_TYPEINFO +#if CPPUNIT_USE_TYPEINFO_NAME # define __CPPUNIT_SUITE_CTOR_ARGS( ATestCaseType ) #else # define __CPPUNIT_SUITE_CTOR_ARGS( ATestCaseType ) (std::string(#ATestCaseType)) |