vote up 0 vote down star

In Delphi, you can use compiler directives to disable specific warnings, such as

{$WARN USE_BEFORE_DEF OFF}

But when I tried to do that with a specific hint, whose underscore_style_name I got out of the helpfile, the compiler said it doesn't know what {$HINT} is. So is there any way to do this?

flag

68% accept rate
Why do you want to disable a hint? Things you get hinted on are eliminated by the compiler in the EXE anyway, so you are guaranteed not to affect the program's execution. – JosephStyons Jan 14 at 20:03
Because I don't like generating hints and warnings, and I can see, by reading the code, that the possible condition it's warning me about in this hint doesn't apply in this case. – Mason Wheeler Jan 14 at 20:12
I disagree, the hints are most of the time valid. And we have a succesfull 0 hint strategy – Gamecat Jan 14 at 20:55
Yep. Most of the time they are. In this case, though, the compiler doesn't understand that "raise" exits the procedure. – Mason Wheeler Jan 14 at 21:43
Yeah, hints are your friend. Don't hate on the hints. – Jim McKeeth Jan 14 at 23:03
show 3 more comments

3 Answers

vote up 4 vote down check

No specific hints, but you can disable them all.

{$HINTS OFF}
procedure MyProc;
var
  i : integer;
begin
  DoSomething;
end;
{$HINTS ON}
link|flag
Yeah, that's what I was afraid of. – Mason Wheeler Jan 14 at 21:44
vote up 2 vote down

Best I can think of is to surround the subject of the hint with a conditional define, and use the same conditional define around the code that may or may not be needed, as shown below:

If you have this:

procedure MyProc;
var
  i : integer;
begin
  DoSomething;
  //SomethingWith_i_IsCommentedOut;
end;

You will get: Hint: variable "i" is declared but never used

So try this instead:

procedure MyProc;
  {$IFDEF USE_THE_I_PROCEDURE}
var
  i : integer;
  {$ENDIF}
begin
  DoSomething;
  {$IFDEF USE_THE_I_PROCEDURE}
  SomethingWith_i_IsCommentedOut;
  {$ENDIF}
end;

Now you can turn the define on or off, and you should never get a hint.

link|flag
vote up 5 vote down

Little off-topic: You should take care about compiler's hints and warnings. They are not just for fun. Compiler is just saying "program may work differently that you think because YOUR source code is not exact".

link|flag
Yeah, hints are your friend. Don't hate on the hints. – Jim McKeeth Jan 14 at 23:02
I took a look at Mason's code and showed him how to fix the hint. It was an undefined else condition. I've never met a hint or a warning that I couldn't fix. The compiler is my friend. – Jim McKeeth Jan 15 at 2:27

Your Answer

Get an OpenID
or

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