-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
bugSomething isn't workingSomething isn't workingcompletedIssue completed and committed to develop. To be closed on next releaseIssue completed and committed to develop. To be closed on next release
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
Labels
bugSomething isn't workingSomething isn't workingcompletedIssue completed and committed to develop. To be closed on next releaseIssue completed and committed to develop. To be closed on next release
Projects
Status
Completed