Let me introduce the FixInsight 2015.08 release.
Let me introduce the FixInsight 2015.08 release.
* Support for {$INCLUDE } directives
* Support for search path
* Introduced rule W524 ("Generic interface declared with a GUID")
* Introduced rule W526 ("Pointer to a nested method")
* Improved rules W504, W521
* Improved parser
* Minor fixes
http://sourceoddity.com/fixinsight/download.html
http://sourceoddity.com/fixinsight
* Support for {$INCLUDE } directives
* Support for search path
* Introduced rule W524 ("Generic interface declared with a GUID")
* Introduced rule W526 ("Pointer to a nested method")
* Improved rules W504, W521
* Improved parser
* Minor fixes
http://sourceoddity.com/fixinsight/download.html
http://sourceoddity.com/fixinsight
I know, this is hard to detect to not wrong...
ReplyDeletefunction ReverseInteger(AVal: Integer): Integer;
begin
with LongRec(Result) do
begin
Bytes[0] := LongRec(AVal).Bytes[3];
Bytes[1] := LongRec(AVal).Bytes[2];
Bytes[2] := LongRec(AVal).Bytes[1];
Bytes[3] := LongRec(AVal).Bytes[0];
end;
end;
[FixInsight Warning] W521 Return value of function 'ReverseInteger' might be undefined
Congratulations!
ReplyDeleteHI, working here on my large project now (when earlier versions would error out), so that's great :)
ReplyDeleteBrian Hamilton yeah, that's great :)
ReplyDeleteJust installed the 2015.09 release. Works great!
ReplyDelete