summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-09 16:48:32 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-09 16:48:32 -0400
commit3e59b823392701f538f972d689d04b0182696e51 (patch)
tree5a4f935084c734ee1634b76abe5d2d5f1abf8bcc /src/mono.sml
parente699687ba2ff0cc2c7c185c4d99669f77093473b (diff)
Lists all the way through
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono.sml b/src/mono.sml
index b19f5af6..9599433c 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -34,7 +34,7 @@ datatype datatype_kind = datatype Core.datatype_kind
datatype typ' =
TFun of typ * typ
| TRecord of (string * typ) list
- | TDatatype of datatype_kind * int * (string * int * typ option) list
+ | TDatatype of int * (datatype_kind * (string * int * typ option) list) ref
| TFfi of string * string
withtype typ = typ' located