Re: [fpc-devel] Github hosting of FPC utilities and [stable] sources

2020-10-21 Thread Michael Fuchs via fpc-devel
Am 15.10.20 um 22:13 schrieb Florian Klämpfl via fpc-devel: > What use case do you have for svn? Maybe it's possible to offer another > way to access things like rsync? Read log entries and changesets without downloading the whole repository. Git cannot do this. But this is only a secondary

Re: [fpc-devel] Github hosting of FPC utilities and [stable] sources

2020-10-14 Thread Michael Fuchs via fpc-devel
Am 14.10.20 um 00:59 schrieb Michael Van Canneyt via fpc-devel: >> Will there still be an access via SVN or is git the only possibility? > > There are no plans to support SVN after the switch. That is a great pity. But I understand that additional access also means additional time and effort.

Re: [fpc-devel] Github hosting of FPC utilities and [stable] sources

2020-10-13 Thread Michael Fuchs via fpc-devel
Am 13.10.20 um 15:06 schrieb Michael Van Canneyt via fpc-devel: > This is planned, we wait for 3.2.2 and then we move to git. Will there still be an access via SVN or is git the only possibility? best regards Michael ___ fpc-devel maillist -

Re: [fpc-devel] Suggestion: reference counted objects

2014-09-21 Thread Michael Fuchs
Am 20.09.2014 22:54, schrieb Gennady Agranov: If you want to do ARC for objects - just remove this limitation and allow compiler to generate reference counting code not just for for interfaces but for classes that implement interface - AFAIK any interface in FPC/Delphi extends IUnknown and has

Re: [fpc-devel] Delphi anonymous methods

2013-03-05 Thread Michael Fuchs
Am 05.03.2013 10:25, schrieb Michael Van Canneyt: I've seen this before, and always been baffled by this. How can you increment a constant? If you can, it is then a variable, no? A leftover from the TP days. A typed constant acts as an initialized variable. You can disable this construct

Re: [fpc-devel] Delphi anonymous methods

2013-03-05 Thread Michael Fuchs
Am 05.03.2013 11:10, schrieb Paul Ishenin: @Paul: see? :) I see you, Graeme, Michael and probably some more 5-6 developers. That is the problem with mailing lists. Not everybody sends a mail, just saying +1 from me too. And so it could be probably some more 500-600 developers. And btw:

Re: [fpc-devel] Delphi anonymous methods

2013-03-04 Thread Michael Fuchs
Am 04.03.2013 01:15, schrieb Graeme Geldenhuys: [...] It was clearly stated in the past that FPC will not support the C/C++ language feature of declaration a variable in-line inside code blocks, but only in var sections. Example of not allowed code: for i: integer = 0 to 10 do begin