diff options
author | johnvg | 2005-04-18 15:35:02 +0000 |
---|---|---|
committer | johnvg | 2005-04-18 15:35:02 +0000 |
commit | 8e770fb12edf3b5b733d147f6c91cf13622a7d67 (patch) | |
tree | 3b6ea8e43d93c95f20e5906dd509cd79da796812 | |
parent | fix specified type (diff) |
don't print pointer values in type errors
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1527 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | frontend/syntax.icl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index 9f35a45..2c1e91f 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -88,8 +88,8 @@ where instance <<< TypeVar where -// (<<<) file varid = file <<< varid.tv_ident - (<<<) file varid = file <<< varid.tv_ident <<< "<" <<< varid.tv_info_ptr <<< ">" + (<<<) file varid = file <<< varid.tv_ident +// (<<<) file varid = file <<< varid.tv_ident <<< "<" <<< varid.tv_info_ptr <<< ">" instance <<< AttributeVar where |