summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-06-22 22:13:42 +0000
committerStephen D. Huston <shuston@apache.org>2009-06-22 22:13:42 +0000
commit9941a77af5691503d289d2b7c82b222735b74f17 (patch)
tree80742f3dcdb313139dfe5723f9483dc2d6bd609a
parentf5a9d635e388ec9fdfb064c541c9ae1f24250b7b (diff)
downloadqpid-python-9941a77af5691503d289d2b7c82b222735b74f17.tar.gz
Fix compile error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@787422 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/src/qpid/sys/AggregateOutput.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/AggregateOutput.cpp b/cpp/src/qpid/sys/AggregateOutput.cpp
index d46fccc208..709d3bc640 100644
--- a/cpp/src/qpid/sys/AggregateOutput.cpp
+++ b/cpp/src/qpid/sys/AggregateOutput.cpp
@@ -34,7 +34,7 @@ void AggregateOutput::activateOutput() { control.activateOutput(); }
void AggregateOutput::giveReadCredit(int32_t credit) { control.giveReadCredit(credit); }
-bool AggregateOutput::AggregateOutput::hasOutput() {
+bool AggregateOutput::hasOutput() {
Mutex::ScopedLock l(lock);
return !tasks.empty();
}