diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2008-10-26 01:56:32 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2008-10-26 01:56:32 +0000 |
commit | 3ffd5fef91c8ded892ccc078718cf95e430df9f8 (patch) | |
tree | 12c59e515c165cbc1680e3f7f0340fe6d1440f41 | |
parent | e4d96dbd7dc5459edfa6b70f8905d363bfbf5a66 (diff) | |
download | qpid-python-3ffd5fef91c8ded892ccc078718cf95e430df9f8.tar.gz |
corrected compile error
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@707931 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/cpp/src/qpid/client/Subscription.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/client/Subscription.cpp b/qpid/cpp/src/qpid/client/Subscription.cpp index 449c7a736c..af4d7bdb56 100644 --- a/qpid/cpp/src/qpid/client/Subscription.cpp +++ b/qpid/cpp/src/qpid/client/Subscription.cpp @@ -33,7 +33,7 @@ std::string Subscription::getName() const { return impl->getName(); } std::string Subscription::getQueue() const { return impl->getQueue(); } const SubscriptionSettings& Subscription::getSettings() const { return impl->getSettings(); } void Subscription::setFlowControl(const FlowControl& f) { impl->setFlowControl(f); } -void Subscription::setAutoAck(size_t n) { impl->setAutoAck(n); } +void Subscription::setAutoAck(unsigned int n) { impl->setAutoAck(n); } SequenceSet Subscription::getUnacquired() const { return impl->getUnacquired(); } SequenceSet Subscription::getUnaccepted() const { return impl->getUnaccepted(); } void Subscription::acquire(const SequenceSet& messageIds) { impl->acquire(messageIds); } |