Skip to content
Snippets Groups Projects
Commit bd54318b authored by Lukas Stadler's avatar Lukas Stadler
Browse files

use bitwise (instead of arithmetic) shift in BitwiseFunctions

parent 0e6d30c6
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ public class BitwiseFunctions {
ans[i] = RRuntime.INT_NA;
completeVector = false;
} else {
ans[i] = aVal >> bVal;
ans[i] = aVal >>> bVal;
}
break;
case SHIFTL:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment