From e14a250d6e54fd15ded5d484f995d71f1c3477e7 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 7 Jan 2004 14:07:21 +0000 Subject: [PATCH] pro9 workarounds; some ADL protection for is_xxx [SVN r21529] --- include/boost/ref.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/ref.hpp b/include/boost/ref.hpp index 8ff5725..fb7497b 100644 --- a/include/boost/ref.hpp +++ b/include/boost/ref.hpp @@ -40,7 +40,7 @@ public: #else - explicit reference_wrapper(T& t): t_(addressof(t)) {} + explicit reference_wrapper(T& t): t_(boost::addressof(t)) {} #endif