Here's the situation:
void funct( unsigned u, double d, float f )
{
u = 12;
}
void funct( double u, int d, void* asd, float f )
{
u = 13;
}
int main()
{
const unsigned u = 123;
double d = 123.123;
float f = 123.123;
funct( u, d, f, 123 );
return 0;
}
gives me:
./src/test.cpp:19: error: no matching function for call to 'funct(const unsigned int&, double&, float&, int)'
./src/test.cpp:4: note: candidates are: void funct(unsigned int, double, float)
./src/test.cpp:8: note: void funct(double, int, void*, float)
It's absolutely expected error, as there's no suitable function to be called, OK, fine. But take a look at the compiler error:
V V V
no matching function for call to 'funct(const unsigned int&, double&, float&, int)
Why are these & there? When I make a correct call - everything is fine, and all parameters, as expected, are not passed as references.
Using Ubuntu 10.04, 64bit and g++ version 4.4.3
no instance of overloaded function "funct" matches (const unsigned int, double, float, int). (I cut out lots of text to make it readable in a comment.) – sbi Nov 13 '10 at 13:43