Please look at the following call and the corresponding function,

long pagenumber = 0;
Node *newNode = createNode();
bufMgr->writePage(pageNumber,(char*)newNode);

and writePage is declared as follows

writePage(long &pageNumber,char* &node)

writePage accepts a long reference and char* reference. The above doesn't compile, It shows the following error

no matching function for call to ‘SampleBufferManager::writePage(long int&, char*)’
SampleBufferManager.h:28: note: candidates are: bool SampleBufferManager::writePage(long int&, char*&)

Can anyone help me out, how to handle this...The typecast is doing the problem, and the code compiles if i do it in the following way:

long pagenumber = 0;
Node *newNode = createNode();
char *test = (char*)newNode;
bufMgr->writePage(pageNumber,test);

How could the problem be solved??

link|improve this question

48% accept rate
You've already solved the problem of how to pass the reference. There may be other problems with this implementation though ;-) – AJG85 Dec 14 '11 at 22:04
Wait, so why do you not want to create a variable? That's the only way you can do it; it won't work as it is now with just a cast. (See Oli's answer if the function doesn't need to modify the char*, in which case you don't need to create a variable) – Seth Carnegie Dec 14 '11 at 22:08
The issue here is: what does this function do WRT char? Should this function really take a Node *&? Can you fix it? – curiousguy Dec 14 '11 at 22:25
feedback

3 Answers

You can't pass a reference to a temporary rvalue (thanks curiousguy). You'll have to make a variable and pass that:

char* c = (char*)newNode;
bufMgr->writePage(pageNumber, c);
link|improve this answer
or alter the function as Oli observed. – Mooing Duck Dec 14 '11 at 22:02
You can't pass a non-const reference to a temporary. Fix'd. – Griwes Dec 14 '11 at 22:07
@Griwes a reference is a non-const reference. – Seth Carnegie Dec 14 '11 at 22:09
@SethCarnegie: but you can pass const reference - and, from your answer, OP can read "I cannot pass any kind of reference to a temporary". – Griwes Dec 14 '11 at 22:23
1  
Technical side node: "temporary" Actually, there is no temporary here! – curiousguy Dec 14 '11 at 22:23
show 2 more comments
feedback

You cannot bind a non-const reference to a temporary. The result of (char *)newNode is a temporary (it doesn't have a name).

You can, however, bind a const reference to a temporary. So redeclaring your function as writePage(long &pageNumber, char* const &node) would work.

link|improve this answer
1  
Though, the point of passing it by reference was probably to modify it so making it const might defeat the purpose. – Seth Carnegie Dec 14 '11 at 21:59
@SethCarnegie: That's a good point! – Oli Charlesworth Dec 14 '11 at 21:59
Technical side node: "You cannot bind a non-const reference to a temporary" Actually, there is no temporary here! – curiousguy Dec 14 '11 at 22:24
@curiousguy: What is the result of a cast, then? – Oli Charlesworth Dec 14 '11 at 22:34
@OliCharlesworth "temporary" is the adjective, the noun implied here is "object". There is no object here. "What is the result of a cast," an rvalue. – curiousguy Dec 14 '11 at 22:37
feedback

What does writePage do? Are you in control of that function as well? Redeclaring the second parameter as const might help, if it does not write to this address. If it does—and its name suggests that somehow—it might be reasonable to use Node*in it anyway, i.e. declare it as

writePage(long &pageNumber, Node* &node)

After all, you don't want your Node pointer newNode to point to something which is not a Node instance at all, anymore, because it was overwritten by arbitrary chars. Do you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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