How do I tell whether I should use
my_type bar;
using some_namespace::foo;
foo(bar);
instead of
some_namespace::foo(bar);
when calling my function foo (that is not within my immediate scope)? Is there a generic "rule" for figuring out whether you should use ADL or not? Which one should I use "by default"?
foos are declared in your program to determine whether ADL is used in the unqualified version or not. – ybungalobill Feb 12 at 5:56