From a3e76d59c3f0a766e488b8a5d8451c4b830bd63b Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Tue, 25 May 2010 14:22:55 +0000 Subject: [PATCH] Explicitly qualify bind with boost::. Fixes #4223. [SVN r62198] --- include/boost/python/exception_translator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/exception_translator.hpp b/include/boost/python/exception_translator.hpp index 60760dce..eb72da62 100644 --- a/include/boost/python/exception_translator.hpp +++ b/include/boost/python/exception_translator.hpp @@ -18,7 +18,7 @@ template void register_exception_translator(Translate translate, boost::type* = 0) { detail::register_exception_handler( - bind(detail::translate_exception(), _1, _2, translate) + boost::bind(detail::translate_exception(), _1, _2, translate) ); }