From: Richard W.M. Jones Date: Tue, 17 Sep 2013 11:31:17 +0000 (+0100) Subject: example: Remove code which is now implicitly generated. X-Git-Tag: 0.2~31 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=b9524a7609ed0d4d40ef19c77dcf32c0202f7564;p=goaljobs.git example: Remove code which is now implicitly generated. --- diff --git a/examples/compile-c/compile.ml b/examples/compile-c/compile.ml index 8e43948..151e8b7 100644 --- a/examples/compile-c/compile.ml +++ b/examples/compile-c/compile.ml @@ -17,14 +17,3 @@ and compiled c_file = target (more_recent [o_file] [c_file]); require (file_exists c_file); sh "cd $builddir && cc -c %s -o %s" c_file o_file - -(* XXX IMPLICIT *) -let () = - try goal_all () - with - | Goal_result (Goal_failed msg) -> - prerr_endline ("error: " ^ msg); - exit 1 - | exn -> - prerr_endline (Printexc.to_string exn); - exit 1