diff options
author | martinw | 2000-10-06 12:56:42 +0000 |
---|---|---|
committer | martinw | 2000-10-06 12:56:42 +0000 |
commit | a7fcfd15cc75cf4915db24188f687c0866121c44 (patch) | |
tree | cc17821224d5fb295ebadff04c006846e1f69b1a /frontend/StdCompare.icl | |
parent | added assertion alert box for Windows (diff) |
bugfix
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@254 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/StdCompare.icl')
-rw-r--r-- | frontend/StdCompare.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/StdCompare.icl b/frontend/StdCompare.icl index 9b25f2e..fb34ff4 100644 --- a/frontend/StdCompare.icl +++ b/frontend/StdCompare.icl @@ -246,7 +246,7 @@ smallerOrEqual t1 t2 instance =< AType where (=<) {at_type=at_type_1} {at_type=at_type_2} - = at_type_1 =< at_type_2 + = smallerOrEqual at_type_1 at_type_2 instance =< BasicType where |