diff options
author | martinw | 2000-09-26 08:49:13 +0000 |
---|---|---|
committer | martinw | 2000-09-26 08:49:13 +0000 |
commit | bda83900d3bb7e6cfd8633816df719a72a548d2b (patch) | |
tree | 6a6cad4fe14bfd91c98685429c12ccdb583935aa /frontend/StdCompare.icl | |
parent | fix clean 2.0 preprocessor hack syntax (diff) |
bugfix
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@228 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 adb6e99..b40a1db 100644 --- a/frontend/StdCompare.icl +++ b/frontend/StdCompare.icl @@ -5,7 +5,7 @@ import syntax instance == TypeVar where - (==) varid1 varid2 = varid1.tv_name == varid2.tv_name + (==) varid1 varid2 = varid1.tv_info_ptr == varid2.tv_info_ptr instance == FunKind where |