search for: ef04540

Displaying 2 results from an estimated 2 matches for "ef04540".

2016 Feb 26
1
[PATCH] doc: add info on per-function needed feature
...function depends on the feature \"%s\". See also {@link #feature_available}.\n" + opt; + ); pr " * </p>\n"; (match version_added f with | None -> () diff --git a/generator/ocaml.ml b/generator/ocaml.ml index 288e91f..ef04540 100644 --- a/generator/ocaml.ml +++ b/generator/ocaml.ml @@ -177,6 +177,13 @@ end else pr "%s(** alias for {!%s}" indent f.name; + (match f.optional with + | None -> () + | Some opt -> + has_tags := true; + pr "\n\n This fun...
2016 Sep 02
6
[PATCH 0/4] generator: Some work to split large C files
By splitting up large C files we can make parallel compiles a bit faster. Rich.