[fpc-pascal] Internal Error 2010021405 when compiling in Linux

2012-05-02 Thread kyan
Hello all, I am trying to compile a program that contains the following code consturct: type THashEntryT = record Key: string; Value: T; class function Create(const AKey: string; const AValue: T): THashEntryT; static; inline; end; in Lazarus with FPC version 2.7.1 built from the

Re: [fpc-pascal] Internal Error 2010021405 when compiling in Linux

2012-05-02 Thread Sven Barth
Am 02.05.2012 12:44 schrieb kyan alfasud...@gmail.com: Hello all, I am trying to compile a program that contains the following code consturct: type THashEntryT = record Key: string; Value: T; class function Create(const AKey: string; const AValue: T): THashEntryT; static;

Re: [fpc-pascal] Internal Error 2010021405 when compiling in Linux

2012-05-02 Thread kyan
On Wed, May 2, 2012 at 4:34 PM, Sven Barth pascaldra...@googlemail.com wrote: Your code triggers a different bug in the compiler than the mentioned report though the presented error is the same. Please open a new bug report with a example that should compile. Done, #0021921.

[fpc-pascal] Reason of procedure overload RTLeventWaitFor(state, timeout) return.

2012-05-02 Thread kyan
Hello all, I am trying to port a small library previously written for Delphi and Kylix to FPC. This library contains an event object that has similar functionality to a windows kernel event. This object is supposed to have a method that lets you wait for the event object with a timeout and return

[fpc-pascal] Errors compiling FPC trunk r21192 x86 windows existential questions

2012-05-02 Thread Reinier Olislagers
Hi List, Seem to be having some problems compiling FPC trunk r21192 x86 windows (see below). However, x64 build does work. Is this a known problem? Should I keep pestering the list with these kinds of mails (I can put them up in the bugtracker or just wait and be patient as well ;) What's the

Re: [fpc-pascal] Errors compiling FPC trunk r21192 x86 windows existential questions

2012-05-02 Thread Marco van de Voort
In our previous episode, Reinier Olislagers said: Seem to be having some problems compiling FPC trunk r21192 x86 windows (see below). However, x64 build does work. Is this a known problem? Should I keep pestering the list with these kinds of mails (I can put them up in the bugtracker or

[fpc-pascal] Re: Errors compiling FPC trunk r21192 x86 windows existential questions

2012-05-02 Thread Reinier Olislagers
On 2-5-2012 18:26, Marco van de Voort wrote: In our previous episode, Reinier Olislagers said: Seem to be having some problems compiling FPC trunk r21192 x86 windows (see below). However, x64 build does work. Is this a known problem? Should I keep pestering the list with these kinds of

Re: [fpc-pascal] Errors compiling FPC trunk r21192 x86 windows existential questions

2012-05-02 Thread Jonas Maebe
On 02 May 2012, at 18:19, Reinier Olislagers wrote: Seem to be having some problems compiling FPC trunk r21192 x86 windows (see below). However, x64 build does work. Is this a known problem? Yes: http://bugs.freepascal.org/view.php?id=21880 Jonas

[fpc-pascal] TBufDataSet: ApplyUpdates

2012-05-02 Thread Marcos Douglas
Hi, I saw the TBufDataSet.ApplyUpdates and it calls ApplyRecUpdate. The ApplyRecUpdate just raises an exception... There is some implementation, in some place, to work with ApplyUpdates (like a Delphi's TClientDataSet)? Thanks Marcos Douglas ___

Re: [fpc-pascal] TBufDataSet: ApplyUpdates

2012-05-02 Thread LacaK
I saw the TBufDataSet.ApplyUpdates and it calls ApplyRecUpdate. The ApplyRecUpdate just raises an exception... Yes it is virtual method, which can be overriden by descendants There is some implementation, in some place, to work with ApplyUpdates (like a Delphi's TClientDataSet)? Yes,