Run clang-format to fix some inconsistent style

This commit is contained in:
Rangi42
2024-03-07 10:22:40 -05:00
parent 84bedc7bbe
commit bf45ebb178
4 changed files with 9 additions and 8 deletions

View File

@@ -353,7 +353,6 @@ void rpn_BinaryOp(
// First, check if the expression is known
expr.isKnown = src1.isKnown && src2.isKnown;
if (expr.isKnown) {
// If both expressions are known, just compute the value
uint32_t uleft = src1.val, uright = src2.val;