Tagged Questions
3
votes
1answer
917 views
“Cannot convert parameter” using boost::variant iterator
I want to create a function that can take different types of iterators which store the same type of object:
The first is a std::map containing shared_ptr<Foo> (typedef-ed as FooMap) and the ...