From e83682c0917245fabd14f2a20995239f277a4c72 Mon Sep 17 00:00:00 2001 From: Daniel Walker Date: Wed, 1 Jun 2011 19:29:57 +0000 Subject: [PATCH] updated result_of doc with decltype info [SVN r72336] --- utility.htm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/utility.htm b/utility.htm index b9707db..bca0e52 100644 --- a/utility.htm +++ b/utility.htm @@ -224,6 +224,15 @@ typedef boost::result_of< >::type type; +

In a future + release, BOOST_RESULT_OF_USE_DECLTYPE + may be enabled by default on compilers that + support decltype, so if you use the above + protocol please take care to ensure that + the result_type + and result<> members are + accurate.

+

This implementation of result_of requires class template partial specialization, the