Author: mteira Date: Thu Mar 5 16:02:31 2009 New Revision: 750485 URL: http://svn.apache.org/viewvc?rev=750485&view=rev Log: Remove the argument type in the boost::function template since it's no needed and hurts the Sun compiler
Modified: qpid/trunk/qpid/cpp/src/qpid/sys/PollableQueue.h Modified: qpid/trunk/qpid/cpp/src/qpid/sys/PollableQueue.h URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/sys/PollableQueue.h?rev=750485&r1=750484&r2=750485&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/sys/PollableQueue.h (original) +++ qpid/trunk/qpid/cpp/src/qpid/sys/PollableQueue.h Thu Mar 5 16:02:31 2009 @@ -53,7 +53,7 @@ * @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. --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscr...@qpid.apache.org