summaryrefslogtreecommitdiff
path: root/cpp/src/tests/ISList.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2008-03-24 17:43:55 +0000
committerAndrew Stitcher <astitcher@apache.org>2008-03-24 17:43:55 +0000
commit3f8a466daf6eba9717c27a635f2a7307cc4d03bd (patch)
tree08aa12215ccf68d2ba046d8154f1fcb902d3487c /cpp/src/tests/ISList.cpp
parente7541b7deff38a74fe454f3b031ad013f71155ee (diff)
downloadqpid-python-3f8a466daf6eba9717c27a635f2a7307cc4d03bd.tar.gz
- Refactored RefCounted class to avoid virtual inheritance
- Removed extraneous includes and definitions from RefCounted.h - Fixed all the places that were relying on RefCounted.h to be including the intrusive_ptr header file and were assuming that something had imported intrusive_ptr into the qpid namespace git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@640479 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ISList.cpp')
-rw-r--r--cpp/src/tests/ISList.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/tests/ISList.cpp b/cpp/src/tests/ISList.cpp
index de06f130ff..81301e3732 100644
--- a/cpp/src/tests/ISList.cpp
+++ b/cpp/src/tests/ISList.cpp
@@ -24,6 +24,7 @@
#include "test_tools.h"
#include <boost/assign/list_of.hpp>
#include <boost/shared_ptr.hpp>
+#include <boost/intrusive_ptr.hpp>
#include <vector>
QPID_AUTO_TEST_SUITE(ISListTestSuite)
@@ -31,6 +32,7 @@ QPID_AUTO_TEST_SUITE(ISListTestSuite)
using namespace qpid;
using namespace std;
using boost::assign::list_of;
+using boost::intrusive_ptr;
// Comparison, op== and << for ILists in qpid namespace for template lookup.