vote up 0 vote down star

This is the situation:

int f(int a){
    ...
    g(a);
    ...
}

void g(int a){...}

The problem is that the compiler says that there is no matching function for call to g(int&). It wants me to pass the variable by reference and g() recieves parameters by value.

How can I solve this?

flag

1  
What happens if you switch the definitions of f and g round? – Dominic Rodger Nov 7 at 18:08
1  
Are you sure that's the right code? The function f returns an int, but there is no return statement. – Tadmas Nov 7 at 18:11
can you post the compiler error ? – Dani Nov 7 at 18:11
Maybe your function f() doesn't know that the function g() exits. Did you forget to forward declare g()? Or switch f() and g() around like Dominic suggested. – Lucas Nov 7 at 18:13
1  
Well the int& in the call doesn't mean you are required to pass a by reference. It's just showing you the arguments you passed, which are g(lvalue int). Since it cannot express lvalue-ness by means of a type, it shows g(int&) instead. – Johannes Schaub - litb Nov 7 at 18:13
show 2 more comments

3 Answers

vote up 11 vote down check

Well, there's not much here, but the first thing is: make sure you have a declaration for g that's included before f is defined.

void g(int a);

Otherwise, when you get to f, function f has no idea what function g looks like, and you'll run into trouble. From what you've given so far, that's the best I can say.

link|flag
yes, it is. If I declared g() as: g(int& a); it would work, but that's not what I want to do. – macaco Nov 7 at 18:14
1  
@macaco: I think you need to post some more code then. What you have posted will not invoke any errors. – Lucas Nov 7 at 18:21
+1 from the given code, that's the same I can guess too – Devil Jin Nov 7 at 18:29
vote up 1 vote down

Your function g() needs to be defined above f()

link|flag
2  
You mean declared. The compiler looks for the existence of functions, and later links to the actual implementation (the definition). – Cecil Has a Name Nov 7 at 18:33
yes that would also work, but if it is simple function better define it it above – Ponting Nov 7 at 18:40
vote up 0 vote down

There are two things wrong:

1) g is not declared before it is used, so the compiler will compain about that. Assuming you fixed that issue, then the next issue is:

2) f is not returning an int.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.