diff options
| author | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-14 13:45:56 +0000 |
|---|---|---|
| committer | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-14 13:45:56 +0000 |
| commit | f57f4bff9a5dd75d7ed9ade67d964e20815d63ea (patch) | |
| tree | 796ee83a3a443bd387159483b0727b14ca09603d /cppunit/TestRegistry.cpp | |
| parent | 1f18ff96d66b23a83f95ecad20f3061a8243248c (diff) | |
| download | cppunit-f57f4bff9a5dd75d7ed9ade67d964e20815d63ea.tar.gz | |
Removed all 'using namespace' occurrences.
Diffstat (limited to 'cppunit/TestRegistry.cpp')
| -rw-r--r-- | cppunit/TestRegistry.cpp | 6 |
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 |
