From 3b7ecfa6d4da684a635b2469c2d9a2e1e0ed0807 Mon Sep 17 00:00:00 2001 From: letouzey Date: Tue, 12 Mar 2013 23:59:05 +0000 Subject: invalid_arg instead of raise (Invalid_argement ...) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16270 85f007b7-540e-0410-9357-904b9bb8a0f7 --- lib/cList.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/cList.ml b/lib/cList.ml index 78c17c3ff3..8e031a0c90 100644 --- a/lib/cList.ml +++ b/lib/cList.ml @@ -788,7 +788,7 @@ let rec combine3 x y z = | [], [], [] -> [] | (x :: xs), (y :: ys), (z :: zs) -> (x, y, z) :: combine3 xs ys zs - | _, _, _ -> raise (Invalid_argument "List.combine3") + | _, _, _ -> invalid_arg "List.combine3" (* Keep only those products that do not return None *) -- cgit v1.2.3