Browse Source

bugfix : don't mark subclasses methods as override

Nicolas Cannasse 15 years ago
parent
commit
d36792e5d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      genxml.ml

+ 1 - 1
genxml.ml

@@ -111,7 +111,7 @@ let rec exists f c =
 	with
 		Not_found ->
 			match c.cl_super with
-			| None -> true
+			| None -> false
 			| Some (csup,_) -> exists f csup
 
 let gen_type_decl com t =