[fpc-pascal] Re: xmlConfig Documentation

2013-01-16 Thread leledumbo
Most of the FCL are currently undocumented, feel free to send patches for documentation. I'm writing myself for some parts. -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/xmlConfig-Documentation-tp5712580p5712581.html Sent from the Free Pascal - General mailin

[fpc-pascal] xmlConfig Documentation

2013-01-16 Thread John
Hi, Does anyone know of any documentation for the xmlConfig component ?  I seem to have got what I was trying to do working, but if there is any documentation around I would still be interested in seeing it, and if there isn't, I am probably at a poin

[fpc-pascal] Re: Generic + nested type = forward declaration not solved

2013-01-16 Thread leledumbo
Indeed updating FPC is your solution, it compiles in my 2.7.1 revision -- View this message in context: http://free-pascal-general.1045716.n5.nabble.com/Generic-nested-type-forward-declaration-not-solved-tp5712577p5712579.html Sent from the Free Pascal - General mailing list archive at Nabble

Re: [fpc-pascal] Generic + nested type = forward declaration not solved

2013-01-16 Thread Sven Barth
Am 16.01.2013 04:09, schrieb robin: Why does the following fail with: test.pp(7,29) Error: Forward declaration not solved "constructor TVector$LongInt.TIter.Create;" program Test; {$mode objfpc}{$H+} type generic TVector = object type TIter = object

[fpc-pascal] Generic + nested type = forward declaration not solved

2013-01-16 Thread robin
Why does the following fail with: test.pp(7,29) Error: Forward declaration not solved "constructor TVector$LongInt.TIter.Create;" program Test; {$mode objfpc}{$H+} type generic TVector = object type TIter = object constructor Create; end; e