From f79765cce15d2851ce01571187dcdf68335a4202 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sun, 22 Jul 2001 05:30:15 +0000 Subject: [PATCH] reference.html: - Remove declaration/documentation of non-const operator(). - Update documentation of operator() const to state that the called object is not cv-qualified. [SVN r10687] --- doc/reference.html | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/doc/reference.html b/doc/reference.html index b4b2a68..a245198 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -54,7 +54,6 @@ void clear(); // Invocation - result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN); result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const; }; @@ -180,10 +179,10 @@
  • Postconditions: empty().
  • -

    result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN); +

    result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const;

    -

    result_type operator()(Arg1 a1, Arg2 a2, ..., ArgN aN) const; -

    -

    Class template function

    Class template function is a thin wrapper around the numbered class templates function0, function1, etc. It accepts up to MAX_ARGS arguments, but when passed N arguments it will derive from functionN specialized with the arguments it receives. @@ -247,7 +233,7 @@

    Douglas Gregor
    -Last modified: Sat Jul 14 16:05:46 EDT 2001 +Last modified: Sun Jul 22 01:29:50 EDT 2001