id summary reporter owner description type status milestone component version severity resolution keywords cc 6962 [function] missing document function::assign() Akira Takahashi Douglas Gregor "boost::function::assign() member function is undocument. This function can assign allocator object one of the few way. I hope documentation this function. {{{ #include #include #include struct increment { int operator()(int x) const { return x + 1; } }; int main() { boost::function f; f.assign(increment(), std::allocator()); assert(f(1) == 2); } }}}" Bugs new To Be Determined function Boost 1.49.0 Problem