diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/extraction/mlutil.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/extraction/mlutil.ml b/plugins/extraction/mlutil.ml index 5cef4764de..93b6445a0d 100644 --- a/plugins/extraction/mlutil.ml +++ b/plugins/extraction/mlutil.ml @@ -523,7 +523,7 @@ let has_deep_pattern br = array_exists (function (_,pat,_) -> deep pat) br let is_regular_match br = - if Array.length br <> 0 then false (* empty match becomes MLexn *) + if Array.length br = 0 then false (* empty match becomes MLexn *) else try let get_r (ids,pat,c) = |
