summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorManuel Teira Paz <mteira@apache.org>2009-03-05 16:02:31 +0000
committerManuel Teira Paz <mteira@apache.org>2009-03-05 16:02:31 +0000
commit8b49a79708cfc210ee3c38ffcc731e29f9d3eeda (patch)
tree14c57aa45407e6024c975e94c60e2dc7ca7c5c3a /qpid/cpp/src
parent0c3b7597e8f23979d2daf37ea990620ca9ac8326 (diff)
downloadqpid-python-8b49a79708cfc210ee3c38ffcc731e29f9d3eeda.tar.gz
Remove the argument type in the boost::function template since
it's no needed and hurts the Sun compiler git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@750485 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/sys/PollableQueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/PollableQueue.h b/qpid/cpp/src/qpid/sys/PollableQueue.h
index a23cc5137a..f8acf0a5f6 100644
--- a/qpid/cpp/src/qpid/sys/PollableQueue.h
+++ b/qpid/cpp/src/qpid/sys/PollableQueue.h
@@ -53,7 +53,7 @@ class PollableQueue {
* @param values Queue of values to process. Any items remaining
* on return from Callback are put back on the queue.
*/
- typedef boost::function<void (Queue& values)> Callback;
+ typedef boost::function<void (Queue&)> Callback;
/**
* Constructor; sets necessary parameters.