
3 Nov
2009
3 Nov
'09
6:13 p.m.
Christofer Weßeling wrote:
hi!
ok.. - "wrap the member function in mem_fn. " can you give me some dummy code how to do that, or another hint... wrapping in case of packing it into another namespace or {..} ?
You now have boost::bind( &File::get_file_time, _2 ), right? Change it to boost::bind( boost::mem_fn( &File::get_file_time ), _2 ) and see if it helps. I hope it does. :-)