Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a function with the following definition:

virtual bool Process(wtdaFileHandler &daHandler, wtdaGather &daGather);

All code paths in the this function return a bool and I am certainly calling this function, not one in a sub class. The following code produces the error in the posting title:

wtdaLFDProcess process;

// call some methods to do initialize process and args.

if (process.Process(daLFDFileHandler, daGather));
{
     retval = 0;
}
else
{
    retval = LFD_FILE_LOCK_ERROR;
    cout << "Could not obtain file lock for processing." << endl;
    WTDA_STATUS(3,  "Error...Stopping" );
    return;
}

Can anyone explain this? Maybe it's some caveat of C++ which I am unaware of? It makes no sense to me. The error undoubtedly refers to the else. I've built to make sure it's not just the intellisense. This is a Win32 C++ project.

share|improve this question

2 Answers

up vote 9 down vote accepted

You need to lose this semi-colon:

if (process.Process(daLFDFileHandler, daGather));
                                                ^

The semi-colon detatches the if conditional from the following block, which is then interpreted as a scope, followed by an orphan else.

share|improve this answer
Oh wow, that's obvious... I've had other problems with this function call so I wasn't really thinking when I got the error (the assignment with the return value has been failing). Thank you,and I will accept when I can. – evanmcdonnal Jun 11 '12 at 20:56
@evanmcdonnal Why can't you accept it now? :) – Eitan T Jun 11 '12 at 20:56
@EitanT You have to wait a certain amount of time, ten minute I think. – evanmcdonnal Jun 11 '12 at 20:57
@evanmcdonnal Ah! Good to know! – Eitan T Jun 11 '12 at 20:58
1  
@evanmcdonnal Most compilers have a warning for this. If you didn't get one or didn't see it you should turn your warning level up and/or treat warnings as errors, so they can't be ignored. – bames53 Jun 11 '12 at 20:59
show 1 more comment

if (process.Process(daLFDFileHandler, daGather)); remove the ; as it ends if there only

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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