Skip to content

Commit

Permalink
pattern-match exhaustive
Browse files Browse the repository at this point in the history
Just a super minor change to make the code compile again.

This will all be completely revised anyways...
  • Loading branch information
jespera committed Dec 6, 2024
1 parent bb6e3ca commit 78e7f96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/spdiff/Spdiff.ml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ and expr_kind_size (src: AST_generic.expr_kind) =
| DotAccessEllipsis _
| StmtExpr _
| OtherExpr _
| RawExpr _ -> 0
| RawExpr _
| LocalImportAll _ -> 0

let _expr_kind_dist (src: AST_generic.expr_kind) (tgt: AST_generic.expr_kind) =
match src, tgt with
Expand Down

0 comments on commit 78e7f96

Please sign in to comment.