Re: [fpc-devel] [arm] tStream.position

2009-12-10 Thread Dariusz Mazur
Mattias Gärtner pisze: Zitat von Dariusz Mazur : Hi there is problem with something like that var ts : tStream; begin ts:=tStream.create; ouch. TStream is an abstract class. Maybe the keyword 'abstract' should be added, so that the compiler warns. No, I've start form tMemoryStream there

Re: [fpc-devel] [arm] tStream.position

2009-12-10 Thread Mattias Gärtner
Zitat von Dariusz Mazur : Hi there is problem with something like that var ts : tStream; begin ts:=tStream.create; ouch. TStream is an abstract class. Maybe the keyword 'abstract' should be added, so that the compiler warns. ts.position:=2; // here arm write ERange Error // on trace se

[fpc-devel] [arm] tStream.position

2009-12-10 Thread Dariusz Mazur
Hi there is problem with something like that var ts : tStream; begin ts:=tStream.create; ts.position:=2; // here arm write ERange Error // on trace setPosition // is very big number, like 153000 ts.free; end; platform : ARM with soft float -- Darek __