From 13ec966bd1404e88c1d719c9add8681ff76c86b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 19 Oct 2009 19:02:40 +0000 Subject: [PATCH] Fixes for 1.41 [SVN r57004] --- doc/intrusive.qbk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/intrusive.qbk b/doc/intrusive.qbk index c37883a..4c14d1c 100644 --- a/doc/intrusive.qbk +++ b/doc/intrusive.qbk @@ -3183,7 +3183,8 @@ Until now all shown custom value traits are stateless, that is, [*the transforma and values is implemented in terms of static functions]. It's possible to use [*stateful] value traits so that we can separate nodes and values and [*avoid modifying types to insert nodes]. [*Boost.Intrusive] differentiates between stateful and stateless value traits by checking if all -Node <-> Value transformation functions are static or not: +Node <-> Value transformation functions are static or not (except for Visual 7.1, since overloaded +static function detection is not possible, in this case the implementation checks if the class is empty): * If all Node <-> Value transformation functions are static , a [*stateless] value traits is assumed. transformations must be static functions.