diff options
| author | Alan Conway <aconway@apache.org> | 2012-10-12 21:09:15 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2012-10-12 21:09:15 +0000 |
| commit | 018cae9a03afce7cec54291c3a210ffd2f0727e6 (patch) | |
| tree | 5f1b293af44be10229276903b679bc15e3888966 /cpp/src | |
| parent | 4886e2bcce72d99d34330c84ce33f6975f34b825 (diff) | |
| download | qpid-python-018cae9a03afce7cec54291c3a210ffd2f0727e6.tar.gz | |
NO-JIRA: Fix compile error on windows.
Using a private class typedef in a free function.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1397723 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/ha/BrokerReplicator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/ha/BrokerReplicator.cpp b/cpp/src/qpid/ha/BrokerReplicator.cpp index 48d5b71134..9d374e7a4f 100644 --- a/cpp/src/qpid/ha/BrokerReplicator.cpp +++ b/cpp/src/qpid/ha/BrokerReplicator.cpp @@ -214,7 +214,7 @@ class BrokerReplicator::ConnectionObserver : public broker::ConnectionObserver BrokerReplicator& brokerReplicator; }; -template <class E> BrokerReplicator::EventKey eventKey() { +template <class E> pair<string,string> eventKey() { return make_pair(E::PACKAGE_NAME, E::EVENT_NAME); } |
