You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(test_diagnosis): int64 relational operators
This commit adds support for integer(int64) operands for the
following operators:
- .isAtleast.
- .isAtMost.
- .lessThan.
- .greaterThan.
To keep the operator implementations uniform, this commit also
replaces one integer(c_size_t) operator with an integer(int64),
which is equivalent with every compiler tested. Also, int64
predates c_size_t and therefore is more likely to be supported
by older compiler versions. Fortran 2008 introduced int64.
Fortran 2018 introduced c_size_t.