diff options
| author | Gordon Sim <gsim@apache.org> | 2010-04-12 10:24:30 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-04-12 10:24:30 +0000 |
| commit | 382e4999445a11ef663603756403ea1d68460f4e (patch) | |
| tree | 990d570fa1bcdfe733a89a63a0777f6b925e252e /cpp/src | |
| parent | 6f8ea08c7a3e51afc932c762edbf50b2cc66f1b3 (diff) | |
| download | qpid-python-382e4999445a11ef663603756403ea1d68460f4e.tar.gz | |
QPID-664: removed explicit throw() clause
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@933176 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/messaging/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/messaging/Connection.cpp b/cpp/src/qpid/messaging/Connection.cpp index 14e713d425..80e96af1d6 100644 --- a/cpp/src/qpid/messaging/Connection.cpp +++ b/cpp/src/qpid/messaging/Connection.cpp @@ -39,7 +39,7 @@ Connection::Connection(const Connection& c) : Handle<ConnectionImpl>() { PI::cop Connection& Connection::operator=(const Connection& c) { return PI::assign(*this, c); } Connection::~Connection() { PI::dtor(*this); } -Connection::Connection(const std::string& url, const std::string& o) throw(InvalidOptionString) +Connection::Connection(const std::string& url, const std::string& o) { Variant::Map options; AddressParser parser(o); |
