chore: correct the usage of a legacy numeric constant

This commit is contained in:
Dima S
2024-06-25 09:27:59 +02:00
committed by Lucas
parent 1e195156d7
commit d99c014bf7
2 changed files with 2 additions and 2 deletions

View File

@@ -1337,7 +1337,7 @@ impl UntypedExpr {
match self {
Self::BinOp { name, .. } => name.precedence(),
Self::PipeLine { .. } => 0,
_ => std::u8::MAX,
_ => u8::MAX,
}
}