
0
Fixed
[W504] False positive with objects inherited from TObject
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;
type
TFoo = class(TObject)
public
constructor Create;
end;
constructor TFoo.Create;//<- False positiv W504
begin
end;

0
Planned
Roman 10 years ago

0
Fixed
Roman 10 years ago
Customer support service by UserEcho