diff options
| author | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:02:31 +0000 |
|---|---|---|
| committer | Manuel Teira Paz <mteira@apache.org> | 2009-03-05 16:02:31 +0000 |
| commit | ffe0697dc146cb3f4fedc9a0da622e82b88649d8 (patch) | |
| tree | 782a0922c00fe9908b8d469f3a043b10135c5efa /cpp/src/qpid | |
| parent | fc1ed154de9c58ad2d6ab2a6a9866c4bc50fb21a (diff) | |
| download | qpid-python-ffe0697dc146cb3f4fedc9a0da622e82b88649d8.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/qpid@750485 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
| -rw-r--r-- | cpp/src/qpid/sys/PollableQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/PollableQueue.h b/cpp/src/qpid/sys/PollableQueue.h index a23cc5137a..f8acf0a5f6 100644 --- a/cpp/src/qpid/sys/PollableQueue.h +++ b/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. |
