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 | 0e91f3c39a351f9873e65b542aef9094b5f60d0e (patch) | |
| tree | dfdf035d4b1261d78968c66a86e440b35f56fa9e /cpp/src | |
| parent | cf9330ffa82b0219d2d34f025121077ccbfe4b49 (diff) | |
| download | qpid-python-0e91f3c39a351f9873e65b542aef9094b5f60d0e.tar.gz | |
corrected compile error
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707931 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/client/Subscription.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Subscription.cpp b/cpp/src/qpid/client/Subscription.cpp index 449c7a736c..af4d7bdb56 100644 --- a/cpp/src/qpid/client/Subscription.cpp +++ b/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); } |
