diff options
author | Andrew Stitcher <astitcher@apache.org> | 2012-03-20 16:39:03 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2012-03-20 16:39:03 +0000 |
commit | 6703064f0b406ed95e0424f85fc8a950263553f2 (patch) | |
tree | 702d605b820a51cd363cee901bd120f2d5da0c15 /cpp/src/tests/RefCounted.cpp | |
parent | 07c6a631527dd17143f3fbc3629875e160f719b7 (diff) | |
download | qpid-python-6703064f0b406ed95e0424f85fc8a950263553f2.tar.gz |
QPID-2082: Put all of the C++ code in the source tree into a namespace
- This change moves the remaining non-example code in a namespace
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1302988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/RefCounted.cpp')
-rw-r--r-- | cpp/src/tests/RefCounted.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/RefCounted.cpp b/cpp/src/tests/RefCounted.cpp index e4c1da5696..3ac3895322 100644 --- a/cpp/src/tests/RefCounted.cpp +++ b/cpp/src/tests/RefCounted.cpp @@ -21,15 +21,15 @@ #include "unit_test.h" +namespace qpid { +namespace tests { + QPID_AUTO_TEST_SUITE(RefCountedTestSuiteTestSuite) using boost::intrusive_ptr; using namespace std; using namespace qpid; -namespace qpid { -namespace tests { - struct CountMe : public RefCounted { static int instances; CountMe() { ++instances; } |