Quick boost.lambda question

Started by
1 comment, last by load_bitmap_file 18 years ago
If I have a container of abstract base pointers, what's the proper way to do this:
for_each(container.begin(), container.end(), bind(&Foo::fn, *_1));
? I'm trying to call Foo::fn() for every element of container but my compiler is complaining about being unable to instantiate the abstract class Foo.
Advertisement
for_each(container.begin(), container.end(), bind(&Foo::fn,_1, *_2));

for (nonstatic) member-functions the first parameter is always the object itself (the this-pointer so to say)
Quote:Original post by Anonymous Poster
for_each(container.begin(), container.end(), bind(&Foo::fn,_1, *_2));

for (nonstatic) member-functions the first parameter is always the object itself (the this-pointer so to say)


Thanks AP! [smile]

This topic is closed to new replies.

Advertisement