summaryrefslogtreecommitdiff
path: root/lib/canary.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/canary.mli')
-rw-r--r--lib/canary.mli25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/canary.mli b/lib/canary.mli
deleted file mode 100644
index 21949e73..00000000
--- a/lib/canary.mli
+++ /dev/null
@@ -1,25 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-type t
-(** Type of canaries. Canaries are used to ensure that an object does not use
- generic operations. *)
-
-val obj : t
-(** Canary. In the current implementation, this object is marshallable,
- forbids generic comparison but still allows generic hashes. *)
-
-module type Obj = sig type t end
-
-module Make(M : Obj) :
-sig
- type t
- val prj : t -> M.t
- val inj : M.t -> t
-end
-(** Adds a canary to any type. *)