Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code fails to compile with XCode 4.5's clang++ when using libc++ on OS X 10.8:

#include <map>
#include <string>

class Foo {
public:
  explicit Foo(int val_) : val(val_) {}
  int val;
};

struct FooComparator {
  bool operator()(const Foo& left, const Foo& right) {
    return left.val < right.val;
  }
};

int main(int argc, char* argv[]) {

  std::map<Foo, std::string, FooComparator> m;

  Foo f(4);
  m[f] = std::string("four");

  return 0;
}

The error:

broken.cpp:11:8: note: candidate function not viable: 'this' argument has type 'const FooComparator', but method is not marked const bool operator()(const Foo& left, const Foo& right) {

If I turn off libc++ and build with libstdc++ then all is well. Obviously, I can work around this by making FooComparator::operator() const, but I'd like to understand whether this is a problem with libc++ being too strict, or whether the standard (both C++03 and C++11) does in fact require that the comparator's operator() be const (in which case the fact that it works with libstdc++ is a happy accident).

share|improve this question
I've always wondered this too actually – Mooing Duck Oct 30 '12 at 22:36

1 Answer

up vote 12 down vote accepted

Well, yes: The comparator is a subobject of the map itself, one way or another (maybe a member; usually a base class of some inner implementation class). If you have a constant reference to the map, the comparator still needs to be usable for lookup, so the operator needs to be const.

share|improve this answer
I agree with the argument you are making, but I'm curious about how the standards (03, 11) state this. libstdc++ seems happy to instantiate a map with a comparator with a non-const operator() as long as you don't invoke that comparator in a constness violating fashion, while libc++ is not so permissive. Does the requirement that the comparator be const depend on the usage of the map? How do the standards state this, etc. – acm Oct 30 '12 at 23:23
@acm: I don't think it's explicitly stated, but it's basically a consequence of all the other associative container requirements. – Kerrek SB Oct 30 '12 at 23:28
1  
I know I'm nitpicking, because clearly the practical answer is "just make it const already". However, it seems to me that either it is legal to instantiate std::map with a comparator with non-const operator() as long as you don't use the map in such a way as to require constness (in which case libc++ seems to have an error where it requires comparator constness in a non-const context), or it isn't legal, and libstdc++ should reject the code above, but doesn't. Or does this somehow fall within implementation defined behavior, and so both are correct? – acm Oct 30 '12 at 23:58
@acm: I couldn't find any specific statement to that effect, nor for any of the predicates used elsewhere in the standard. I think the requirement simply follows implicitly from the other container requirements, and it is left unspecified how much an implementation cal allow you to get away with a non-const operator. – Kerrek SB Oct 31 '12 at 0:11
How could the requirement logically follow from the spec when a straightforward implementation of the spec does not require it? – Nemo Oct 31 '12 at 1:01
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.