show/hide this revision's text 2 ADL == Koenig Lookup

I once ran into the same problem with a compiler that didn't have Argument Dependent Lookup (Koenig Lookup - thanks @igor) (VC6 I think). This means that when it sees an operator, it just looks in the enclosing namespaces.

So can you tell us what compiler you use?

Moving to another compiler solved it.

Very inconvenient indeed.

show/hide this revision's text 1

I once ran into the same problem with a compiler that didn't have Koenig Lookup (VC6 I think). This means that when it sees an operator, it just looks in the enclosing namespaces.

Moving to another compiler solved it.

Very inconvenient indeed.