We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported and fixed by Bjoern Hendrik Fock of University of Hamburg.
Problem: Calling datetime%utc() with a datetime instance that is already in UTC timezone (i.e. datetime%tz = 0) resulted in a division by zero.
datetime%utc()
datetime
datetime%tz = 0
Solution: Replacing the problematic line that uses division with a line that uses the intrinsic SIGN() function solves the problem.
SIGN()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reported and fixed by Bjoern Hendrik Fock of University of Hamburg.
Problem: Calling
datetime%utc()
with adatetime
instance that is already in UTC timezone (i.e.datetime%tz = 0
) resulted in a division by zero.Solution: Replacing the problematic line that uses division with a line that uses the intrinsic
SIGN()
function solves the problem.The text was updated successfully, but these errors were encountered: