C++: Autoformat.

This commit is contained in:
Geoffrey White
2020-04-17 18:50:41 +01:00
parent de751b0b75
commit a7c22db989

View File

@@ -129,7 +129,12 @@ private class UnsignedBitwiseAndExpr extends BitwiseAndExpr {
getLeftOperand().getValue().toInt() >= 0
) and
(
getRightOperand().getFullyConverted().getType().getUnderlyingType().(IntegralType).isUnsigned() or
getRightOperand()
.getFullyConverted()
.getType()
.getUnderlyingType()
.(IntegralType)
.isUnsigned() or
getRightOperand().getValue().toInt() >= 0
)
}