Applied patch from #4073; fixes #4073

[SVN r62623]
This commit is contained in:
Jeremiah Willcock
2010-06-09 00:51:41 +00:00
parent c4f1ce7cb1
commit 6902f6f943

View File

@ -536,7 +536,7 @@ namespace boost {
// objects, so we invoke through mem_fn() but we retain the
// right target_type() values.
if (f) {
this->assign_to(mem_fn(f), functor);
this->assign_to(boost::mem_fn(f), functor);
return true;
} else {
return false;
@ -549,7 +549,7 @@ namespace boost {
// objects, so we invoke through mem_fn() but we retain the
// right target_type() values.
if (f) {
this->assign_to_a(mem_fn(f), functor, a);
this->assign_to_a(boost::mem_fn(f), functor, a);
return true;
} else {
return false;