I'm having an odd problem, and am wondering why g++ 4.1.2 is behaving the way it does.
Stripped to its essentials:
#include <iostream>
template<typename T>
inline void f(T x) { std::cout << x*x; }
namespace foo {
class A {
public:
void f() const { f(2); }
};
}
The call to f(2) fails because the compiler fails to match the template function f.
I can make it work with ::f(2) but I would like to know WHY this is necessary, since it's completely unambiguous, and as far as my (admittedly out of date) knowledge of the matching rules goes, this should work.
foo::A::f()has the wrong number of arguments, it should be removed from the set of "viable" functions...? – j_random_hacker Nov 9 '10 at 15:30using ::fin your function body. That will bring the global namespacefinto the scope of the function, where it will become a candidate together withfoo::A::f– David Rodríguez - dribeas Nov 9 '10 at 15:51