[LINT68][COMMITTED] Fix typo in <= for mixed LongInt and int
Jose E. Marchesi
jemarch@gnu.org
Sat Jun 13 22:42:13 GMT 2026
---
src/lint68.a68 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lint68.a68 b/src/lint68.a68
index 5795433..39325b6 100644
--- a/src/lint68.a68
+++ b/src/lint68.a68
@@ -667,8 +667,8 @@ def
pub op = = (LongInt i, int j) bool: i = L j,
= = (int i, LongInt j) bool: L i = j;
- pub op <= = (LongInt i, int j) bool: i < L j,
- <= = (int i, LongInt j) bool: L i < j;
+ pub op <= = (LongInt i, int j) bool: i <= L j,
+ <= = (int i, LongInt j) bool: L i <= j;
pub op /= = (LongInt i, int j) bool: i /= L j,
/= = (int i, LongInt j) bool: L i /= j;
--
2.39.5
More information about the Algol68
mailing list