diff options
| author | Gordon Sim <gsim@apache.org> | 2010-05-18 17:26:58 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-05-18 17:26:58 +0000 |
| commit | abfe789b522301b1a28228c4a1553e325287224f (patch) | |
| tree | dcca74302d0c6ab496f5cafde22b7be6f15b4446 /qpid/cpp/src | |
| parent | 12ac0913e3c6cd906da2f36449f16e1438a36899 (diff) | |
| download | qpid-python-abfe789b522301b1a28228c4a1553e325287224f.tar.gz | |
QPID-2612: Fix to windows build from Chuck Rolke
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@945778 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/windows/SaslAuthenticator.cpp | 2 | ||||
| -rw-r--r-- | qpid/cpp/src/qpid/client/SessionImpl.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qpid/broker/windows/SaslAuthenticator.cpp b/qpid/cpp/src/qpid/broker/windows/SaslAuthenticator.cpp index 212d7c4db4..642be29f2f 100644 --- a/qpid/cpp/src/qpid/broker/windows/SaslAuthenticator.cpp +++ b/qpid/cpp/src/qpid/broker/windows/SaslAuthenticator.cpp @@ -78,7 +78,7 @@ void SaslAuthenticator::fini(void) return; } -std::auto_ptr<SaslAuthenticator> SaslAuthenticator::createAuthenticator(Connection& c) +std::auto_ptr<SaslAuthenticator> SaslAuthenticator::createAuthenticator(Connection& c, bool) { if (c.getBroker().getOptions().auth) { return std::auto_ptr<SaslAuthenticator>(new SspiAuthenticator(c)); diff --git a/qpid/cpp/src/qpid/client/SessionImpl.h b/qpid/cpp/src/qpid/client/SessionImpl.h index 7259bc0733..cd7b2c123d 100644 --- a/qpid/cpp/src/qpid/client/SessionImpl.h +++ b/qpid/cpp/src/qpid/client/SessionImpl.h @@ -83,8 +83,8 @@ public: void resume(boost::shared_ptr<ConnectionImpl>); void suspend(); - void assertOpen() const; - bool hasError() const; + QPID_CLIENT_EXTERN void assertOpen() const; + QPID_CLIENT_EXTERN bool hasError() const; Future send(const framing::AMQBody& command); Future send(const framing::AMQBody& command, const framing::MethodContent& content); |
