Displaying 4 results from an estimated 4 matches for "fb7dd3c".
Did you mean:
b7dd3ac
2016 Dec 09
2
Re: [PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...if neither clause matches then it will fall through
> to displaying an error message, allowing the user to correct the
> problem.
> ---
> v2v/output_vdsm.ml | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> index a78e3e6..fb7dd3c 100644
> --- a/v2v/output_vdsm.ml
> +++ b/v2v/output_vdsm.ml
> @@ -83,6 +83,9 @@ object
> let fields = List.rev fields in (* "UUID" "data-center" ... *)
> match fields with
> | "" :: uuid :: rest (* handles tr...
2016 Dec 08
3
[PATCH 1/2] Remove most instances of OCaml warning 52.
See:
http://caml.inria.fr/pub/docs/manual-ocaml/comp.html#s:comp-warnings
---
builder/index_parser.ml | 8 ++++----
generator/tests_c_api.ml | 4 ++--
mllib/common_utils.ml | 2 +-
v2v/inspect_source.ml | 2 +-
v2v/linux.ml | 2 +-
v2v/xpath_helpers.ml | 2 +-
6 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/builder/index_parser.ml b/builder/index_parser.ml
2016 Dec 08
0
[PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...ncorrect. However we
are lucky because if neither clause matches then it will fall through
to displaying an error message, allowing the user to correct the
problem.
---
v2v/output_vdsm.ml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
index a78e3e6..fb7dd3c 100644
--- a/v2v/output_vdsm.ml
+++ b/v2v/output_vdsm.ml
@@ -83,6 +83,9 @@ object
let fields = List.rev fields in (* "UUID" "data-center" ... *)
match fields with
| "" :: uuid :: rest (* handles trailing "/" case *)
+...
2016 Dec 09
0
Re: [PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...all through
> > to displaying an error message, allowing the user to correct the
> > problem.
> > ---
> > v2v/output_vdsm.ml | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml
> > index a78e3e6..fb7dd3c 100644
> > --- a/v2v/output_vdsm.ml
> > +++ b/v2v/output_vdsm.ml
> > @@ -83,6 +83,9 @@ object
> > let fields = List.rev fields in (* "UUID" "data-center" ... *)
> > match fields with
> > | "" :: uuid :: rest...