From 99f54c0f4b53debc49f2081ce01158b2ed200c30 Mon Sep 17 00:00:00 2001 From: "Steve M. Robbins" Date: Sat, 2 Jun 2001 18:53:06 +0000 Subject: Replace CU_ by CPPUNIT_. --- src/cppunit/TestCase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cppunit/TestCase.cpp') diff --git a/src/cppunit/TestCase.cpp b/src/cppunit/TestCase.cpp index 1b623c9..d48531c 100644 --- a/src/cppunit/TestCase.cpp +++ b/src/cppunit/TestCase.cpp @@ -115,12 +115,12 @@ std::string { std::string className; -#ifdef CU_USE_TYPEINFO +#ifdef CPPUNIT_USE_TYPEINFO const std::type_info& thisClass = typeid (*this); className = thisClass.name(); #else className = "TestCase"; -#endif // CU_USE_TYPEINFO +#endif // CPPUNIT_USE_TYPEINFO return className + "." + getName (); } -- cgit v1.2.1