summaryrefslogtreecommitdiff
path: root/cppunit/TestRegistry.cpp
diff options
context:
space:
mode:
authorBastiaan Bakker <bastiaan.bakker@lifeline.nl>2001-04-14 13:45:56 +0000
committerBastiaan Bakker <bastiaan.bakker@lifeline.nl>2001-04-14 13:45:56 +0000
commitf57f4bff9a5dd75d7ed9ade67d964e20815d63ea (patch)
tree796ee83a3a443bd387159483b0727b14ca09603d /cppunit/TestRegistry.cpp
parent1f18ff96d66b23a83f95ecad20f3061a8243248c (diff)
downloadcppunit-f57f4bff9a5dd75d7ed9ade67d964e20815d63ea.tar.gz
Removed all 'using namespace' occurrences.
Diffstat (limited to 'cppunit/TestRegistry.cpp')
-rw-r--r--cppunit/TestRegistry.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/cppunit/TestRegistry.cpp b/cppunit/TestRegistry.cpp
index 246dd27..34de017 100644
--- a/cppunit/TestRegistry.cpp
+++ b/cppunit/TestRegistry.cpp
@@ -1,8 +1,9 @@
#include "TestRegistry.h"
#include "Test.h"
-using namespace std;
-using namespace CppUnit;
+//using namespace std;
+
+namespace CppUnit {
std::vector<std::string> s_registry_names;
std::vector<Test*> s_registry_tests;
@@ -69,4 +70,5 @@ TestRegistry::TestRegistry ()
{
}
+} // namespace CppUnit