Hi,
Hi,
I'm getting compile errors trying to use iterator_to() on an unordered_set when given a const reference (and returning a const_iterator).
It works fine for me with ordered set.
I am able to reproduce this error by adding the following two lines:
MyClass const &cr = values[0];
base_set.iterator_to(cr);
to the bottom of the Example code (just before the return 0 from main) for unordered_set