More casting (in outputs) with unchecked((long)...)

This commit is contained in:
2024-04-01 23:39:07 +02:00
parent 7d6e9e9a29
commit 92129aaf2b

View File

@@ -1178,8 +1178,8 @@ public class RStringLiteral extends RegularExpression {
condGenerated = true;
ostr.print("(active" + j + " & 0x" +
Long.toHexString(actives[j]) + "L) != 0L");
ostr.print("(active" + j + " & unchecked((long)0x" +
Long.toHexString(actives[j]) + "L)) != 0L");
}
if (condGenerated)