aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/context.ml
diff options
context:
space:
mode:
authorGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-11 12:44:03 +0200
committerGravatar Matej Kosik <m4tej.kosik@gmail.com>2016-08-11 12:51:22 +0200
commitbf7515a299d894762e10cf0f116e156073071879 (patch)
tree6fc33e30fdd2723dce7d56424d384705f3a97e25 /kernel/context.ml
parent4b24bb7d3b770592015c264001b9aed9fe95c200 (diff)
CLEANUP: removing the definition of the "Context.Rel.Declaration.of_tuple" function
Diffstat (limited to 'kernel/context.ml')
-rw-r--r--kernel/context.ml4
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/context.ml b/kernel/context.ml
index 2b6bc34f9..2f4997055 100644
--- a/kernel/context.ml
+++ b/kernel/context.ml
@@ -142,10 +142,6 @@ struct
match decl with
| LocalAssum (n,ty) -> f ty acc
| LocalDef (n,v,ty) -> f ty (f v acc)
-
- let of_tuple = function
- | n, None, ty -> LocalAssum (n,ty)
- | n, Some v, ty -> LocalDef (n,v,ty)
end
(** Rel-context is represented as a list of declarations.