Closed
Description
If a non-positive element of any array passed to SumOfLogs
an exception is supposed to be raised. But we get an access violation instead. This is because the code is:
raise SysUtils.EArgumentOutOfRangeException(sNotPositive);
instead of
raise SysUtils.EArgumentOutOfRangeException.Create(sNotPositive);
i.e. the Create
method call is missing!
Metadata
Metadata
Assignees
Projects
Status
Completed