summaryrefslogtreecommitdiff
path: root/cpp/src/tests/TopicExchangeTest.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-03-25 13:34:44 +0000
committerAlan Conway <aconway@apache.org>2008-03-25 13:34:44 +0000
commitb449826a61eaa0a754e55ca8143882216a07d7e0 (patch)
tree9743d3b8a0f5479260beea3a7b47ac1fd8be1801 /cpp/src/tests/TopicExchangeTest.cpp
parentbb542cee9af73a016360aa2d00addfee0206cad8 (diff)
downloadqpid-python-b449826a61eaa0a754e55ca8143882216a07d7e0.tar.gz
Fix compile errors/warnings with gcc 4.3
- added missing #includes that were implicitly included via old headers. - add namespace-qualifiers to fix "changes meaning of name" warnings. - ./qpid/ptr_map.h:51: fixed "qualified return value" warning. - use const char* for "conversion from string constant to ‘char*’" warnings Applied patch from https://issues.apache.org/jira/browse/QPID-869 remove depenency on boost/date_time, causes warnings with gcc 4.3. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@640806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/TopicExchangeTest.cpp')
-rw-r--r--cpp/src/tests/TopicExchangeTest.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/src/tests/TopicExchangeTest.cpp b/cpp/src/tests/TopicExchangeTest.cpp
index 9e320b76f9..adb937179f 100644
--- a/cpp/src/tests/TopicExchangeTest.cpp
+++ b/cpp/src/tests/TopicExchangeTest.cpp
@@ -21,7 +21,7 @@
using namespace qpid::broker;
-Tokens makeTokens(char** begin, char** end)
+Tokens makeTokens(const char** begin, const char** end)
{
Tokens t;
t.insert(t.end(), begin, end);
@@ -57,34 +57,34 @@ class TokensTest : public CppUnit::TestCase
void testTokens()
{
Tokens tokens("hello.world");
- char* expect[] = {"hello", "world"};
+ const char* expect[] = {"hello", "world"};
CPPUNIT_ASSERT_EQUAL(TOKENS(expect), tokens);
tokens = "a.b.c";
- char* expect2[] = { "a", "b", "c" };
+ const char* expect2[] = { "a", "b", "c" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect2), tokens);
tokens = "";
CPPUNIT_ASSERT(tokens.empty());
tokens = "x";
- char* expect3[] = { "x" };
+ const char* expect3[] = { "x" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect3), tokens);
tokens = (".x");
- char* expect4[] = { "", "x" };
+ const char* expect4[] = { "", "x" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect4), tokens);
tokens = ("x.");
- char* expect5[] = { "x", "" };
+ const char* expect5[] = { "x", "" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect5), tokens);
tokens = (".");
- char* expect6[] = { "", "" };
+ const char* expect6[] = { "", "" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect6), tokens);
tokens = ("..");
- char* expect7[] = { "", "", "" };
+ const char* expect7[] = { "", "", "" };
CPPUNIT_ASSERT_EQUAL(TOKENS(expect7), tokens);
}