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 | 8b49a79708cfc210ee3c38ffcc731e29f9d3eeda (patch) | |
| tree | 14c57aa45407e6024c975e94c60e2dc7ca7c5c3a /qpid/cpp/src | |
| parent | 0c3b7597e8f23979d2daf37ea990620ca9ac8326 (diff) | |
| download | qpid-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.h | 2 |
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. |
