src/HOL/Tools/res_clause.ML
changeset 20422 35a6a4c863f1
parent 20418 7c1aa7872266
child 20790 a9595fdc02b1
--- a/src/HOL/Tools/res_clause.ML	Mon Aug 28 18:15:32 2006 +0200
+++ b/src/HOL/Tools/res_clause.ML	Mon Aug 28 18:16:08 2006 +0200
@@ -6,6 +6,7 @@
 Typed equality is treated differently.
 *)
 
+(*FIXME: is this signature necessary? Or maybe define and open a Basic_ResClause?*)
 signature RES_CLAUSE =
   sig
   exception CLAUSE of string * term
@@ -76,7 +77,7 @@
   val dfg_arity_clause: arityClause -> string
 end;
 
-structure ResClause : RES_CLAUSE =
+structure ResClause =
 struct
 
 (* Added for typed equality *)
@@ -880,8 +881,4 @@
     clnames
   end;
 
-
-
-
-
 end;