How to compare boost::variant in order to make it a key of std::map ? Seems that operator<() is not defined for boost::variant
|
feedback
|
|
EDITED TO FIX ERROR APPLYING BOOST::APPLY_VISITOR You can create a binary visitor for your variant, and then use boost::apply_visitor to create a comparator for your map:
You'll probably need to overload
Edit: for what it's worth,
which I'm assuming is not what you want. | |||||
feedback
|
|
Perhaps you can pass a comparator to the map. Please see http://www.sgi.com/tech/stl/Map.html for an example on how to write a comparator. | |||
|
feedback
|