Hello Sieghard.

I totally agree with you, sometimes the warnings helps.

I can understand that in a case of the variable is part of the procedure,
like this:

procedure test;
var
  b: 1..10;
begin
  case b of               // here warning
    1: writeln('hello');
  end
end; 

Here I understand and the warning is welcome.

But for this, when the variable is global:

var
  b: 1..10;
...
procedure test;
begin
  case b of               // here warning 
    1: writeln('hello');
  end
end; 

Here, imho, the warning is not really needed.

It is the case in mostly all the warning of msegui, so, imho, we may disable
the warning in that case.

Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to