diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-13 08:44:32 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-13 08:44:32 -0400 |
commit | 363b43b25df5ab03b7954a421a00303668eea7eb (patch) | |
tree | fbe06b63994c3d33b18a451146a7b57111e07359 /demo/treeFun.urs | |
parent | d05506a1ac2933a37257131ae208f9e71e3de76f (diff) |
Simplify type class requirement for tree demo
Diffstat (limited to 'demo/treeFun.urs')
-rw-r--r-- | demo/treeFun.urs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/demo/treeFun.urs b/demo/treeFun.urs index 64a14f4f..323c2e5a 100644 --- a/demo/treeFun.urs +++ b/demo/treeFun.urs @@ -6,8 +6,7 @@ functor Make(M : sig constraint [id] ~ [parent] constraint [id, parent] ~ cols - val key_inj : sql_injectable key - val option_key_inj : sql_injectable (option key) + val key_inj : sql_injectable_prim key table tab : ([id = key, parent = option key] ++ cols) end) : sig |