chelper: fixed parsing standard C "signed" type names

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4012 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz
2015-03-09 04:19:46 +00:00
parent 6f05506393
commit 9bdc865712

View File

@ -1816,7 +1816,7 @@ begin
nm:='';
simple:=TSimpleType.Create(Parser.TokenPos);
issig:=(Parser.Token='unsigned') or (simple.Name='signed');
issig:=(Parser.Token='unsigned') or (Parser.Token='signed');
if issig then begin
nm:=nm+Parser.Token+' ';
Parser.NextToken;