From 02f5d9d0e0f49637c8cfc83317444aea8d535bf6 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 1 Feb 2002 02:55:22 +0000 Subject: [PATCH] reference.html: - Document non-voidness of result_type when on a broken compiler [SVN r12616] --- doc/reference.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/reference.html b/doc/reference.html index c3d7af8..85ead4b 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -32,7 +32,7 @@ typename Allocator = std::allocator<function_base> > class functionN : public function_base, public Mixin { - typedef ResultType result_type; + typedef ResultType result_type; // [1] typedef Policy policy_type; typedef Mixin mixin_type; typedef Allocator allocator_type; @@ -288,10 +288,12 @@
+

[1] On compilers not supporting void returns, when the ReturnType is void, the result_type of a Boost.Function object is implementation-defined. +


Douglas Gregor
-Last modified: Tue Jan 29 22:51:49 EST 2002 +Last modified: Thu Jan 31 21:55:35 EST 2002