diff options
author | Alain Frisch <alain@frisch.fr> | 2012-05-29 11:47:28 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2012-05-29 11:47:28 +0000 |
commit | a0a14c08fa467bc6a40b268f0dbba9568e241e17 (patch) | |
tree | 0a248584e83daee65471533c0d5c34252c333527 /stdlib/parsing.ml | |
parent | 05c973e6ed4be5e2fb28ef97b9659c9677ccbfd1 (diff) |
Enable and fix more warnings.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12498 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/parsing.ml')
-rw-r--r-- | stdlib/parsing.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stdlib/parsing.ml b/stdlib/parsing.ml index 55a8f53aa..a10ffe2c1 100644 --- a/stdlib/parsing.ml +++ b/stdlib/parsing.ml @@ -74,6 +74,9 @@ type parser_output = | Compute_semantic_action | Call_error_function +(* to avoid warnings *) +let _ = [Read_token; Raise_parse_error; Grow_stacks_1; Grow_stacks_2; Compute_semantic_action; Call_error_function] + external parse_engine : parse_tables -> parser_env -> parser_input -> Obj.t -> parser_output = "caml_parse_engine" |