Skip to content

Commit 4027c9d

Browse files
t-a-krichardleach
authored andcommitted
pp.c: Replace SvUV_nomg(sv) with SvUVX(sv) in pp_int.
Similar to commit 7512287, SvUV_nomg(sv) here can be safely replaced with simple SvUVX(sv) as SvIOK(sv) and SvIsUV(sv) are already tested.
1 parent 6c47c37 commit 4027c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3318,7 +3318,7 @@ PP(pp_int)
33183318
}
33193319
else if (SvIOK(sv)) {
33203320
if (SvIsUV(sv))
3321-
TARGu(SvUV_nomg(sv), 1);
3321+
TARGu(SvUVX(sv), 1);
33223322
else
33233323
TARGi(iv, 1);
33243324
}

0 commit comments

Comments
 (0)