From dff5f49e2429d967f99fd0cd033953af6fecf480 Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Tue, 6 Apr 2004 11:16:45 +0000 Subject: [PATCH] doc updates --- doc/docs.html | 7 +++++-- doc/docs.rst | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/docs.html b/doc/docs.html index 164a231..d465802 100644 --- a/doc/docs.html +++ b/doc/docs.html @@ -432,7 +432,10 @@ int ret = call_function<int>(
 template<class Ret>
-Ret call_member(object&, const char* name, ...)
+Ret call_member(object const&, const char* name, ...)
+
+template<class Ret>
+Ret call_member(weak_ref, const char* name, ...)
 

This treats the given object as an instance of a class. The given name is the name of a member function to call. The ... represents a variable number of @@ -2155,7 +2158,7 @@ feature ideas.

diff --git a/doc/docs.rst b/doc/docs.rst index 4c67894..7404e7b 100755 --- a/doc/docs.rst +++ b/doc/docs.rst @@ -397,7 +397,10 @@ brackets, like this:: :: template - Ret call_member(object&, const char* name, ...) + Ret call_member(object const&, const char* name, ...) + + template + Ret call_member(weak_ref, const char* name, ...) This treats the given object as an instance of a class. The given name is the name of a member function to call. The ... represents a variable number of -- 2.11.4.GIT