2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 05:02:17 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Daniel James
8bf5a125cf Create a branch for inspect fixes.
[SVN r61439]
2010-04-20 21:11:27 +00:00

View File

@@ -18,7 +18,7 @@ template <class ExceptionType, class Translate>
void register_exception_translator(Translate translate, boost::type<ExceptionType>* = 0)
{
detail::register_exception_handler(
boost::bind<bool>(detail::translate_exception<ExceptionType,Translate>(), _1, _2, translate)
bind<bool>(detail::translate_exception<ExceptionType,Translate>(), _1, _2, translate)
);
}