More casting (in outputs) with unchecked((long)...)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user