Skip to content
Snippets Groups Projects

Replace unused pattern variables with underscore

Merged Tej Chajed requested to merge tchajed/stdpp:fix-unused-variable-warnings into master
All threads resolved!
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -26,7 +26,7 @@ Fixpoint coPset_wf (t : coPset_raw) : bool :=
@@ -26,7 +26,7 @@ Fixpoint coPset_wf (t : coPset_raw) : bool :=
| coPLeaf _ => true
| coPLeaf _ => true
| coPNode true (coPLeaf true) (coPLeaf true) => false
| coPNode true (coPLeaf true) (coPLeaf true) => false
| coPNode false (coPLeaf false) (coPLeaf false) => false
| coPNode false (coPLeaf false) (coPLeaf false) => false
| coPNode b l r => coPset_wf l && coPset_wf r
| coPNode _ l r => coPset_wf l && coPset_wf r
end.
end.
Arguments coPset_wf !_ / : simpl nomatch, assert.
Arguments coPset_wf !_ / : simpl nomatch, assert.
Loading