diff options
author | Andrew Stitcher <astitcher@apache.org> | 2008-04-17 21:46:22 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2008-04-17 21:46:22 +0000 |
commit | 1b4a961ec807e5e61cd232b08020a935a4f76f4c (patch) | |
tree | a696732d72bd36cac2f8d6dff7d41debf3fb89c0 /qpid/cpp/src/tests/InlineVector.cpp | |
parent | f89c4bab5b5414796ca104d9a9a6c7fc138e10cd (diff) | |
download | qpid-python-1b4a961ec807e5e61cd232b08020a935a4f76f4c.tar.gz |
Patch for improved compatibility with gcc 3.4 and boost 1.33
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@649294 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/InlineVector.cpp')
-rw-r--r-- | qpid/cpp/src/tests/InlineVector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/cpp/src/tests/InlineVector.cpp b/qpid/cpp/src/tests/InlineVector.cpp index d1b3ebf7de..5f1a08759f 100644 --- a/qpid/cpp/src/tests/InlineVector.cpp +++ b/qpid/cpp/src/tests/InlineVector.cpp @@ -30,11 +30,11 @@ using namespace std; typedef InlineVector<int, 3> Vec; bool isInline(const Vec& v) { - return (char*)&v <= (char*)v.data() && - (char*)v.data() < (char*)&v+sizeof(v); + return (char*)&v <= (char*)(&v[0]) && + (char*)(&v[0]) < (char*)&v+sizeof(v); } -BOOST_AUTO_TEST_CASE(testCtor) { +QPID_AUTO_TEST_CASE(testCtor) { { Vec v; BOOST_CHECK(isInline(v)); @@ -65,7 +65,7 @@ BOOST_AUTO_TEST_CASE(testCtor) { } } -BOOST_AUTO_TEST_CASE(testInsert) { +QPID_AUTO_TEST_CASE(testInsert) { Vec v; v.push_back(1); BOOST_CHECK_EQUAL(v.size(), 1u); |