Tagged Questions

6
votes
1answer
285 views

Iterating over the types in a boost::variant

I'm using a boost variant to hold some generated types, right now my code generator creates a header with the types and a variant capable of holding them. At initialization time, I'd like to iterate ...
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 ...