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??
char*, in which case you don't need to create a variable) – Seth Carnegie Dec 14 '11 at 22:08char? Should this function really take aNode *&? Can you fix it? – curiousguy Dec 14 '11 at 22:25