aboutsummaryrefslogtreecommitdiff
path: root/printing
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-06-17 14:26:02 +0200
committerPierre-Marie Pédrot2014-06-17 15:44:38 +0200
commit90d64647d3fd5dbf5c337944dc0038f0b19b8a51 (patch)
treeb33528c72730ec541a75e3d0baaead6789f4dcb9 /printing
parentd412844753ef25f4431c209f47b97b9fa498297d (diff)
Removing dead code.
Diffstat (limited to 'printing')
-rw-r--r--printing/ppvernac.ml5
-rw-r--r--printing/printer.ml2
2 files changed, 0 insertions, 7 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml
index 6fa5b8896e..d89731147b 100644
--- a/printing/ppvernac.ml
+++ b/printing/ppvernac.ml
@@ -375,11 +375,6 @@ let pr_priority = function
| None -> mt ()
| Some i -> spc () ++ str "|" ++ spc () ++ int i
-let pr_poly p =
- if Flags.is_universe_polymorphism () then
- if not p then str"Monomorphic " else mt ()
- else if p then str"Polymorphic " else mt ()
-
(**************************************)
(* Pretty printer for vernac commands *)
(**************************************)
diff --git a/printing/printer.ml b/printing/printer.ml
index cb10f9661a..3b5c80c62f 100644
--- a/printing/printer.ml
+++ b/printing/printer.ml
@@ -727,8 +727,6 @@ let pr_assumptionset env s =
] in
prlist_with_sep fnl (fun x -> x) (Option.List.flatten assums)
-open Typeclasses
-
let xor a b =
(a && not b) || (not a && b)