Skip to content

Commit

Permalink
[js] Fix uint16
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Apr 11, 2018
1 parent a609b56 commit 4039aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/js/Compiler.nqp
Expand Up @@ -1591,7 +1591,7 @@ class QAST::CompilerJS does DWIMYNameMangling does SerializeOnce {
$unsigned ?? $T_UINT8 !! $T_INT8;
}
elsif $bits == 16 {
$unsigned ?? $T_UINT8 !! $T_INT16;
$unsigned ?? $T_UINT16 !! $T_INT16;
}
else {
$T_INT;
Expand Down

0 comments on commit 4039aeb

Please sign in to comment.