summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-24 21:40:04 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-24 21:40:04 +0000
commit4b1f0c32c908d37807aa907a34137e5bf3e34639 (patch)
tree739296c04a281910c0ec5507662401ae062e5a67 /cpp/src
parent85411cebd80ad297ce371ff4bf1cf80d75c0e6e5 (diff)
downloadqpid-python-4b1f0c32c908d37807aa907a34137e5bf3e34639.tar.gz
Moved TcpAddress insertion operators to Address.cpp
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707756 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/Url.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/qpid/Url.cpp b/cpp/src/qpid/Url.cpp
index 22e81b3adc..b49bc6d288 100644
--- a/cpp/src/qpid/Url.cpp
+++ b/cpp/src/qpid/Url.cpp
@@ -38,12 +38,6 @@ using namespace std;
namespace qpid {
-std::ostream& operator<<(std::ostream& os, const TcpAddress& a) {
- return os << "tcp:" << a.host << ":" << a.port;
-}
-
-std::istream& operator>>(std::istream&, const TcpAddress&);
-
Url Url::getHostNameUrl(uint16_t port) {
TcpAddress address(std::string(), port);
if (!sys::SystemInfo::getLocalHostname(address))