diff options
author | Alan Conway <aconway@apache.org> | 2008-04-23 22:13:14 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-04-23 22:13:14 +0000 |
commit | 046e1e70a0bed4689040324eaa7e4da10b7a0508 (patch) | |
tree | 25dcb85b688db64014d5fbbb8e9e7452b579553f /cpp/src/tests/unit_test.h | |
parent | 8d7d7d3d335528e21494df33ed910d12a9106b40 (diff) | |
download | qpid-python-046e1e70a0bed4689040324eaa7e4da10b7a0508.tar.gz |
Fix build error introduced by earlier commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@651088 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/unit_test.h')
-rw-r--r-- | cpp/src/tests/unit_test.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/src/tests/unit_test.h b/cpp/src/tests/unit_test.h index e757961616..b986c74afa 100644 --- a/cpp/src/tests/unit_test.h +++ b/cpp/src/tests/unit_test.h @@ -45,18 +45,12 @@ # define QPID_AUTO_TEST_SUITE_END() #elif (BOOST_VERSION < 103400) - +// Note the trailing ';' # define QPID_AUTO_TEST_SUITE(name) BOOST_AUTO_TEST_SUITE(name); # define QPID_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END(); -#elif (BOOST_VERSION < 103400) - -# define QPID_AUTO_TEST_SUITE(name) BOOST_AUTO_TEST_SUITE(name) -# define QPID_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END() - #endif // Workarounds for BOOST_AUTO_TEST_CASE|SUITE|SUITE_END - // Workaround for BOOST_AUTO_TEST_SUITE_EXPECTED_FAILURES // #if (BOOST_VERSION < 103500) |