summaryrefslogtreecommitdiff
path: root/include/cppunit/extensions/HelperMacros.h
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-07-06 00:31:25 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-07-06 00:31:25 +0000
commita90452b2ef0c9366118ae1be78d798a0198ae363 (patch)
tree7ad83daa72ff5a84609528e57bdc50b86c28309f /include/cppunit/extensions/HelperMacros.h
parent83766a55021bea4fa506ece7ad0be11c6dcff6f8 (diff)
downloadcppunit-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.h6
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))