Revert "add ignore-warnings flag to roc build"

This reverts commit 1c85b823c1.
This commit is contained in:
Isaac Van Doren 2024-01-14 19:51:58 -06:00
parent acb2cfdd40
commit 3d0661db0c
No known key found for this signature in database
GPG key ID: CFA524CD470E5B94
2 changed files with 3 additions and 18 deletions

View file

@ -18,10 +18,8 @@ impl Problems {
// 0 means no problems, 1 means errors, 2 means warnings
if self.errors > 0 {
1
} else if self.warnings > 0 {
2
} else {
0
self.warnings.min(1) as i32
}
}