summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/TopicExchange.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2008-07-29 20:26:32 +0000
committerAndrew Stitcher <astitcher@apache.org>2008-07-29 20:26:32 +0000
commit14744b26e039cf25368872a244e575ee04d0d30f (patch)
tree8ededd92acf87514345aa63ef9bab11427254957 /cpp/src/qpid/broker/TopicExchange.cpp
parentfe73a28361d4b6896d4cfd54379e429ecbdcfedf (diff)
downloadqpid-python-14744b26e039cf25368872a244e575ee04d0d30f.tar.gz
QPID-1198 (Partial): Added explicit namespaces that the Sun C++ requires (that gcc doesn't)
Patches from Manuel Teira. It's not clear at this point whether there is a compiler problem with gcc that it does find the symbols in the namespaces or SunCC that it doesn't! git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680827 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/TopicExchange.cpp')
-rw-r--r--cpp/src/qpid/broker/TopicExchange.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.cpp b/cpp/src/qpid/broker/TopicExchange.cpp
index cfd9ef7a9b..48d6e88503 100644
--- a/cpp/src/qpid/broker/TopicExchange.cpp
+++ b/cpp/src/qpid/broker/TopicExchange.cpp
@@ -36,7 +36,7 @@ Tokens& Tokens::operator=(const std::string& s) {
std::string::const_iterator i = s.begin();
while (true) {
// Invariant: i is at the beginning of the next untokenized word.
- std::string::const_iterator j = find(i, s.end(), '.');
+ std::string::const_iterator j = std::find(i, s.end(), '.');
push_back(std::string(i, j));
if (j == s.end()) return *this;
i = j + 1;