summaryrefslogtreecommitdiff
path: root/src/cppunit/TestCase.cpp
diff options
context:
space:
mode:
authorSteve M. Robbins <smr@sumost.ca>2001-06-02 18:53:06 +0000
committerSteve M. Robbins <smr@sumost.ca>2001-06-02 18:53:06 +0000
commit99f54c0f4b53debc49f2081ce01158b2ed200c30 (patch)
treed4c749cba9bcbc44a9a496ff90f8cf0797f81580 /src/cppunit/TestCase.cpp
parente3dfe8c45eec2adc487b938795d4fca3e5983f68 (diff)
downloadcppunit-99f54c0f4b53debc49f2081ce01158b2ed200c30.tar.gz
Replace CU_ by CPPUNIT_.
Diffstat (limited to 'src/cppunit/TestCase.cpp')
-rw-r--r--src/cppunit/TestCase.cpp4
1 files changed, 2 insertions, 2 deletions
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 ();
}