[cfe-dev] Explaining unqualified lookup in templates

Matthieu Monrocq matthieu.monrocq at gmail.com
Wed Apr 4 10:08:09 PDT 2012


Le 4 avril 2012 14:35, Bruce Merry <bmerry at gmail.com> a écrit :

> Hi
>
> With reference to http://clang.llvm.org/compatibility.html#dep_lookup:
> I've just run into exactly the problem with overloaded operator<< that
> this page describes. I've modified my code as suggested, but out of
> interest I'm curious as to why the unqualified lookup on dependent
> names is done immediately rather than deferred until template
> instantiation (when the argument-dependent lookup is done). It seems
> to contradict the C++11 spec 14.6.2 (it looks like C++98 has the same
> language as well), which says:
>
> "If an operand of an operator is a type-dependent expression, the
> operator also denotes a dependent name. Such names are unbound and are
> looked up at the point of the template instantiation (14.6.4.1) in
> both the context of the template definition and the context of the
> point of instantiation."
>
> In the example at the URL above, std::cout<<value has a second
> argument which is type-dependent, so I would expect operator<< to be
> looked up in the context of the point of instantiation, at which point
> the appropriate overload is defined.
>
> Thanks
> Bruce
> --
> Dr Bruce Merry
> bmerry <@> gmail <.> com
> http://www.brucemerry.org.za/
> http://blog.brucemerry.org.za/
>

Ah, this one is amusing.

Actually, overload resolution is *done* at the point of instantiation.

However, for the template code to be valid, the name should exist at the
point where the template is declared...

In the URL mentionned, you could perfectly declare:

struct Useless; Useless Multiply(Useless, Useless);

Prior to the template and it would suffice to appease the compiler. No
definition of either Useless or its Multiply would be needed because they
will not be used in the end.

I sometimes wonder if this was done to "secure" the template instantiation
by guaranteeing that at least one overload exist (even if not suitable, we
cannot know at this point), rather than say... an object of that name.

-- Matthieu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20120404/add8831f/attachment.html>


More information about the cfe-dev mailing list