0
Fixed

[W504] False positive with objects inherited from TObject

Uwe Schuster 10 years ago updated by Roman 10 years ago 2
Constructors for classes directly inherited from TObject without inherited call lead to false positive W504. It is a convention to write inherited in that case.

type
TFoo = class(TObject)
public
constructor Create;
end;

constructor TFoo.Create;//<- False positiv W504
begin

end;