vote up 2 vote down star

I have a function that gives me the following warning:

[DCC Warning] filename.pas(6939): W1035 Return value of function 'function' might be undefined

The function, however, is clean, small, and does have a known, expected, return value. The first statement in the function is:

Result := '';

and there is no local variable or parameter called Result either.

Is there any kind of pragma-like directive I can surround this method with to remove this warning? This is Delphi 2007.

Unfortunately, the help system on this Delphi installation is shot, so I can't pop up the help for that warning right now.

Anyone know off the top of their head what I can do?

flag

6 Answers

vote up 4 vote down check

Are you sure you have done everything to solve the warning? Maybe you could post the code for us to look at?

You can turn off the warning locally this way:

{$WARN NO_RETVAL OFF}
function func(...): string;
begin
  ...
end;
{$WARN NO_RETVAL ON}
link|flag
The first statement in the function is giving the function a default return value. The rest of the function is one case statement and some calls to other functions from the case points. – Lasse V. Karlsen Sep 14 '08 at 15:55
vote up 0 vote down

I would certainly suggest adding a code comment as to why it was done if you turn such warnings off.

link|flag
vote up 1 vote down

I am not sure that I want to see the code for this unit... after all, the error occurs at line 6939 ... Maybe some internal compiler table have been exceeded?

link|flag
vote up 0 vote down

In order to get a good answer for this, you'll have to post the code. In general, the Delphi compiler will give this warning if there is a possible code path that could result in the Result not being defined. Sometimes that code path is less than obvious.

link|flag
When the code path follows an initial, unconditional line of code that explicitly initialises "result" (as explained in the question), then no matter how unobvious that code path is the warning is bogus (in this case). – Deltics Nov 11 at 22:01
vote up 0 vote down

The {$WARN NO_RETVAL OFF} is what you are looking for, but generally I like to find out why stuff like this happens. You might consider formatting it differently and seeing if that helps.

Do you have any flow altering commands like Exit in there? Do you directly raise exceptions, etc? Does your case statement have an else at the end that sets a value on Result?

Might try tweaking those elements and see if that eliminates the warning too.

link|flag
vote up 1 vote down

There seems to be some sort of bug in Delphi. Read this post, the last comment links to other bug-reports that may be the one that you have got:

http://qc.codegear.com/wc/qcmain.aspx?d=8144

link|flag
I know, there's also a similar bug report about too many local variables and parameters combined causes this, but this function is really simple. Anyway, Delphi is buggy. What else is new :) – Lasse V. Karlsen Sep 14 '08 at 15:58

Your Answer

Get an OpenID
or

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