diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-02-08 23:14:11 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-02-08 23:14:11 +0000 |
| commit | 385bd81cce8ad409bb77eafebb73edcd37bd7ce7 (patch) | |
| tree | 6749f87addd1f35d82ddea0200d4604a36af5b4b /cpp/src | |
| parent | 71d6503bb2eff6609472988464c64b11c4cf0b74 (diff) | |
| download | qpid-python-385bd81cce8ad409bb77eafebb73edcd37bd7ce7.tar.gz | |
QPID-4575 Visual Studio 2012 requires exported destructor
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1444277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/client/FailoverManager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/FailoverManager.cpp b/cpp/src/qpid/client/FailoverManager.cpp index 9405765b47..f27aeb5b52 100644 --- a/cpp/src/qpid/client/FailoverManager.cpp +++ b/cpp/src/qpid/client/FailoverManager.cpp @@ -34,6 +34,9 @@ using qpid::sys::Duration; FailoverManager::FailoverManager(const ConnectionSettings& s, ReconnectionStrategy* rs) : settings(s), strategy(rs), state(IDLE) {} +FailoverManager::~FailoverManager() +{} + void FailoverManager::execute(Command& c) { bool retry = false; |
