|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r62198 - trunk/boost/python
From: steven_at_[hidden]
Date: 2010-05-25 10:22:56
Author: steven_watanabe
Date: 2010-05-25 10:22:55 EDT (Tue, 25 May 2010)
New Revision: 62198
URL: http://svn.boost.org/trac/boost/changeset/62198
Log:
Explicitly qualify bind with boost::. Fixes #4223.
Text files modified:
trunk/boost/python/exception_translator.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/python/exception_translator.hpp
==============================================================================
--- trunk/boost/python/exception_translator.hpp (original)
+++ trunk/boost/python/exception_translator.hpp 2010-05-25 10:22:55 EDT (Tue, 25 May 2010)
@@ -18,7 +18,7 @@
void register_exception_translator(Translate translate, boost::type<ExceptionType>* = 0)
{
detail::register_exception_handler(
- bind<bool>(detail::translate_exception<ExceptionType,Translate>(), _1, _2, translate)
+ boost::bind<bool>(detail::translate_exception<ExceptionType,Translate>(), _1, _2, translate)
);
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk