diff options
| author | Matej Kosik | 2016-08-11 12:41:08 +0200 |
|---|---|---|
| committer | Matej Kosik | 2016-08-11 12:51:22 +0200 |
| commit | 4b24bb7d3b770592015c264001b9aed9fe95c200 (patch) | |
| tree | 30f67612fffa280730286869c73f66f5d493df41 /kernel/context.ml | |
| parent | adc68c671e73faa80808521e132460d3a9ff94f0 (diff) | |
CLEANUP: removing the definition of the "Context.Rel.Declaration.to_tuple" function
Diffstat (limited to 'kernel/context.ml')
| -rw-r--r-- | kernel/context.ml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/context.ml b/kernel/context.ml index 4e53b73a28..2b6bc34f90 100644 --- a/kernel/context.ml +++ b/kernel/context.ml @@ -143,10 +143,6 @@ struct | LocalAssum (n,ty) -> f ty acc | LocalDef (n,v,ty) -> f ty (f v acc) - let to_tuple = function - | LocalAssum (na, ty) -> na, None, ty - | LocalDef (na, v, ty) -> na, Some v, ty - let of_tuple = function | n, None, ty -> LocalAssum (n,ty) | n, Some v, ty -> LocalDef (n,v,ty) |
