You are not logged in.
Pages: 1
I get this error when I run the testprogram and even this short program gets the same error:
program SizeCheck;
{$APPTYPE CONSOLE}
uses
Windows,
mormot.core.os,
mormot.core.datetime;
begin
Writeln('SizeOf(TRWLightLock) = ', SizeOf(TRWLightLock));
Writeln('SizeOf(Windows.TSystemTime) = ', SizeOf(Windows.TSystemTime));
Writeln('SizeOf(mormot.core.os.TSystemTime) = ', SizeOf(mormot.core.os.TSystemTime));
Readln;
end.Project SizeCheck.exe raised exception class EAssertionFailed with message 'Assertion failure (e:\devlib\mormot2\src\core\mormot.core.datetime.pas, line 4561)'.
I'm running Delphi13.
Delphi-11, WIN10 and Win11
Offline
It worked ok here, on Delphi 13.1, and the latest mORMot 2: 4, 16, 16 were the results
Last edited by Prometeus (Yesterday 22:26:16)
Offline
Pages: 1