I have a C++ File class with read function, that is supposed to read whole contents of a file (just like Python does) into a buffer. However, when I tried to call read function from unistd.h, I get:

file.cpp:21: error: no matching function for call to ‘File::read(int&, char*&, int)’

file.cpp:17: note: candidates are: char* File::read()

What am I doing wrong? These have completely different signatures, why can't I simply call it?

link|improve this question

Are you going to show us code, or just let us guess all day? – rlbond Jul 18 '09 at 19:09
Without the code you can only get guesses. – Loki Astari Jul 18 '09 at 19:22
You really included <unistd.h> ? Try calling ::read(..whatever) instead of read(..whatever) though. – nos Jul 18 '09 at 19:28
feedback

2 Answers

up vote 4 down vote accepted

Have you tried being explicit about scope;

char* File::read()
{
   // Double-colon to get to global scope
   ::read(...);
   // ..
}

?

link|improve this answer
1  
Thanks. This was exactly what I needed. Too much Python, I must go back to C++ and get this all back again :-) – gruszczy Jul 18 '09 at 19:43
feedback

The definition for the posix standard version of the read method is defined as extern "C". This is neccesary so that the read symbol is not mangled by the C++ compiler and links against the proper function in the library. Mixing and matching C and C++ symbols will have unpredictable results. If possible, rename the c++ function so as not to conflict with any symbols that are declared extern "C".

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.