Boost logo

Boost-Commit :

From: anthony_at_[hidden]
Date: 2008-07-07 03:30:27


Author: anthonyw
Date: 2008-07-07 03:30:27 EDT (Mon, 07 Jul 2008)
New Revision: 47172
URL: http://svn.boost.org/trac/boost/changeset/47172

Log:
Corrected description to avoid reference to arguments
Text files modified:
   trunk/libs/thread/doc/once.qbk | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/thread/doc/once.qbk
==============================================================================
--- trunk/libs/thread/doc/once.qbk (original)
+++ trunk/libs/thread/doc/once.qbk 2008-07-07 03:30:27 EDT (Mon, 07 Jul 2008)
@@ -31,8 +31,8 @@
 be equivalent to calling the original. ]]
 
 [[Effects:] [Calls to `call_once` on the same `once_flag` object are serialized. If there has been no prior effective `call_once` on
-the same `once_flag` object, the argument `func` (or a copy thereof) is called as-if by invoking `func(args)`, and the invocation of
-`call_once` is effective if and only if `func(args)` returns without exception. If an exception is thrown, the exception is
+the same `once_flag` object, the argument `func` (or a copy thereof) is called as-if by invoking `func()`, and the invocation of
+`call_once` is effective if and only if `func()` returns without exception. If an exception is thrown, the exception is
 propagated to the caller. If there has been a prior effective `call_once` on the same `once_flag` object, the `call_once` returns
 without invoking `func`. ]]
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk