diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 12:54:39 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 12:54:39 -0400 |
commit | abb3bffd224cb7bdbbbc1461643a8e58fb03ed8f (patch) | |
tree | fffd7969dc6117fb442be22dfcbb86c15df35d0d /src/marshalcheck.sml | |
parent | e74f91d28381be3758a53da75985afa05a06680d (diff) |
Fix overzealous Marshalcheck; garbage-collect string-embedded closures when no dyns are active
Diffstat (limited to 'src/marshalcheck.sml')
-rw-r--r-- | src/marshalcheck.sml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/marshalcheck.sml b/src/marshalcheck.sml index 2cce607b..c48fd14f 100644 --- a/src/marshalcheck.sml +++ b/src/marshalcheck.sml @@ -58,7 +58,8 @@ val clientToServer = [("Basis", "int"), ("Basis", "string"), ("Basis", "time"), ("Basis", "unit"), - ("Basis", "option")] + ("Basis", "option"), + ("Basis", "bool")] val clientToServer = PS.addList (PS.empty, clientToServer) |