Skip to content

Commit

Permalink
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1896,6 +1896,11 @@ public long untaint(long num) {
return num;
}

@Specialization
public double untaint(double num) {
return num;
}

@Specialization
public boolean untaint(boolean bool) {
return bool;

0 comments on commit a1a1fe1

Please sign in to comment.