diff options
author | ronny | 2004-06-22 13:40:40 +0000 |
---|---|---|
committer | ronny | 2004-06-22 13:40:40 +0000 |
commit | 8a45fa814569d3f87ef40fe715fb063abe2df5f1 (patch) | |
tree | bd42e2847abebb33dc6cd8e158cec4d9b462b799 | |
parent | remove overloading_2.o, typechecker_2.o and typechecker2_2.o (diff) |
bug fix: introduce Char type constructor for Char type (instead of Int)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1500 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | frontend/typereify.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/typereify.icl b/frontend/typereify.icl index 8085c9a..0cf6beb 100644 --- a/frontend/typereify.icl +++ b/frontend/typereify.icl @@ -565,7 +565,7 @@ instance reify BasicType where predef BT_Int = PD_Dyn_TypeCodeConstructorInt predef BT_Char - = PD_Dyn_TypeCodeConstructorInt + = PD_Dyn_TypeCodeConstructorChar predef BT_Real = PD_Dyn_TypeCodeConstructorReal predef BT_Bool |