On 06/01/2014 12:58, Marco van de Voort wrote:
> In our previous episode, Reinier Olislagers said:
>> Perhaps something to do with commit 26398
>> * Initial active version of
>>rtl-extra : objects matrix ucomplex
>>rtl-objpas: convutil(s) dateutil(s) stdconvs variants varutils
>
> Fixed.
In our previous episode, Reinier Olislagers said:
> Hitting compilation problems on trunk with fpcup.
>
> cp.exe: C:/development/fpctrunk/rtl/units/x86_64-win64/objects.ppu: No
> such file or directory
> make.exe[4]: *** [fpc_install] Error 1
>
> Full log at
> http://pastebin.com/wunVysdX
>
> Pe
Hitting compilation problems on trunk with fpcup.
cp.exe: C:/development/fpctrunk/rtl/units/x86_64-win64/objects.ppu: No
such file or directory
make.exe[4]: *** [fpc_install] Error 1
Full log at
http://pastebin.com/wunVysdX
Perhaps something to do with commit 26398
* Initial active version of
Jonas Maebe wrote:
Assert(TypeOf(qt) = TypeOf(result));
This is always true. Everything descends from TOBject.
But assuming the result is not TObject, it would be
Assert((qt=Nil) or (qt.Inheritsfrom(TheResultClass))
So again skipping the nil check for simplicity, this compiles but are
the se
Michael Van Canneyt wrote:
On Mon, 6 Jan 2014, Mark Morgan Lloyd wrote:
Michael Van Canneyt wrote:
On Sun, 5 Jan 2014, Mark Morgan Lloyd wrote:
Simulating a C-style conditional, I can do this
function tf(const q: qword; const qt, qf: TObject): TObject; inline;
begin
Assert(TypeOf(qt) = Ty
On 06 Jan 2014, at 10:31, Michael Van Canneyt wrote:
On Mon, 6 Jan 2014, Mark Morgan Lloyd wrote:
Michael Van Canneyt wrote:
On Sun, 5 Jan 2014, Mark Morgan Lloyd wrote:
Simulating a C-style conditional, I can do this
function tf(const q: qword; const qt, qf: TObject): TObject;
inline;
b
On Mon, 6 Jan 2014, Mark Morgan Lloyd wrote:
Michael Van Canneyt wrote:
On Sun, 5 Jan 2014, Mark Morgan Lloyd wrote:
Simulating a C-style conditional, I can do this
function tf(const q: qword; const qt, qf: TObject): TObject; inline;
begin
Assert(TypeOf(qt) = TypeOf(result));
This is a
Michael Van Canneyt wrote:
On Sun, 5 Jan 2014, Mark Morgan Lloyd wrote:
Simulating a C-style conditional, I can do this
function tf(const q: qword; const qt, qf: TObject): TObject; inline;
begin
Assert(TypeOf(qt) = TypeOf(result));
This is always true. Everything descends from TOBject.
Bu
On Sun, 5 Jan 2014, Mark Morgan Lloyd wrote:
Simulating a C-style conditional, I can do this
function tf(const q: qword; const qt, qf: TObject): TObject; inline;
begin
Assert(TypeOf(qt) = TypeOf(result));
This is always true. Everything descends from TOBject.
But assuming the result is n