When compiling with a recent OCaml version (4.14.1 in this case) warning 6 is enabled which warns about function application without the label.
Example:
File "fl_package_base.ml", line 304, characters 22-40:
304 | let pkg_ancestors = query_requirements predlist pkg in
^^^^^^^^^^^^^^^^^^
Warning 6 [labels-omitted]: label preds was omitted in the application of this function.
This commit adds the labels (and renames anonymous arguments to allow labels to match names wherever convenient).
When compiling with a recent OCaml version (4.14.1 in this case) warning 6 is enabled which warns about function application without the label.
Example:
This commit adds the labels (and renames anonymous arguments to allow labels to match names wherever convenient).