[fpc-devel] extend unreachable code warning for more cases?

2014-02-26 Thread Sven Barth
Hello together! In context of Apple's recent security bug where a goto fail; at the wrong place disabled certificate checking or something along that lines I've thought whether it would 1) be worthwhile to extend FPC with the capability to detect such cases as well and 2) to see whether it

Re: [fpc-devel] extend unreachable code warning for more cases?

2014-02-26 Thread Sergei Gorelkin
26.02.2014 12:09, Sven Barth пишет: Hello together! In context of Apple's recent security bug where a goto fail; at the wrong place disabled certificate checking or something along that lines I've thought whether it would 1) be worthwhile to extend FPC with the capability to detect such cases

Re: [fpc-devel] extend unreachable code warning for more cases?

2014-02-26 Thread Sven Barth
Am 26.02.2014 09:41, schrieb Sergei Gorelkin: 26.02.2014 12:09, Sven Barth пишет: Hello together! In context of Apple's recent security bug where a goto fail; at the wrong place disabled certificate checking or something along that lines I've thought whether it would 1) be worthwhile to

Re: [fpc-devel] extend unreachable code warning for more cases?

2014-02-26 Thread Sergei Gorelkin
26.02.2014 13:28, Sven Barth пишет: Am 26.02.2014 09:41, schrieb Sergei Gorelkin: 26.02.2014 12:09, Sven Barth пишет: Hello together! In context of Apple's recent security bug where a goto fail; at the wrong place disabled certificate checking or something along that lines I've thought

[fpc-devel] Class property and virtual getter

2014-02-26 Thread luiz americo pereira camara
TSimpleModel = class(TPersistent) protected class function GetResourceClient: IResourceClient; virtual; class property ResourceClient: IResourceClient read GetResourceClient; public end; Trying to compile the above code i get the following error: Error: Illegal symbol for property