Delphi 2010 shows warnings in several files.  As we fix them in our project 
I'll list the files and the lines here.  If you would rather I didn't bother 
just let me know.

In synaip.pas:

  if not (Value[n] in ['0'..'9']) then

In synautil.pas:

  if Value[n] in [#0..#8, #10..#31] then

  if not(t[1] in [' ', '"', ':', '=']) then

You probably don't want to use CharInSet to fix these since it's Delphi only.  
You could use something like "if Pos(x[i], "0123456789") > 0 then".



Jon B.


<<winmail.dat>>

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to