summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2015-09-02 18:53:32 +0000
committerAndrew Stitcher <astitcher@apache.org>2015-09-02 18:53:32 +0000
commit5ef2c7b6d1a55164943980a44586b132b94e62a1 (patch)
treef63fc6be341c4be6c1c0feda99db24e345ec59a8 /qpid/cpp/src
parent6ab46a1bd6dc52378b3c996fb45776e0e84b708f (diff)
downloadqpid-python-5ef2c7b6d1a55164943980a44586b132b94e62a1.tar.gz
NO-JIRA: Remove unused function
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700866 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/amqp/Translation.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/qpid/cpp/src/qpid/broker/amqp/Translation.cpp b/qpid/cpp/src/qpid/broker/amqp/Translation.cpp
index 23375f0e99..d4b3f555b2 100644
--- a/qpid/cpp/src/qpid/broker/amqp/Translation.cpp
+++ b/qpid/cpp/src/qpid/broker/amqp/Translation.cpp
@@ -59,10 +59,6 @@ qpid::framing::ReplyTo translate(const std::string address, Broker* broker)
return qpid::framing::ReplyTo(i > 0 ? address.substr(0, i) : EMPTY, (i+1) < address.size() ? address.substr(i+1) : EMPTY);
}
}
-qpid::framing::ReplyTo translate(const qpid::amqp::CharSequence& address, Broker* broker)
-{
- return translate(std::string(address.data, address.size), broker);
-}
std::string translate(const qpid::framing::ReplyTo r)
{
if (r.getExchange().size()) {