Error: no matching function for call to BufferIO::open(const char*&, int)

808 Views Asked by At

//Displayed Error message in eclipse cdt.

- Syntax error
    - candidate is:
    - no matching function for call to ‘BufferIO::open(const char*&, 
     int)’
//BufferIO::BufferIO(const char* filename) {

    // trying to open a a file
    if( (mfile = int open(filename, O_RDONLY | O_DIRECT)) == -1) {
        STDERR("opening file failed");
    }
}
1

There are 1 best solutions below

0
On

There isn't really enough information in your posting to provide a full answer; however, if I had to guess, I would assume that you're trying to either call the C function open() or perhaps fstream::open() BUT, you have already declared and/or defined a BufferIO::open() function. If that guess is correct, then you have namespace issues.

Or, if you're actually TRYING to call BufferIO::open(), then you need to provide us with the source and/or declaration so we can help you determine why it doesn't match.