We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d3249 commit 9738738Copy full SHA for 9738738
ext/Opcode/Opcode.pm
@@ -6,7 +6,7 @@ use strict;
6
7
our($VERSION, @ISA, @EXPORT_OK);
8
9
-$VERSION = "1.46";
+$VERSION = "1.47";
10
11
use Carp;
12
use Exporter ();
ext/Opcode/Opcode.xs
@@ -360,7 +360,7 @@ CODE:
360
bitmap[len] = ~bitmap[len];
361
/* take care of extra bits beyond PL_maxo in last byte */
362
if (PL_maxo & 07)
363
- bitmap[opset_len-1] &= ~(0xFF << (PL_maxo & 0x07));
+ bitmap[opset_len-1] &= ~(char)(0xFF << (PL_maxo & 0x07));
364
}
365
ST(0) = opset;
366
0 commit comments