File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -901,7 +901,6 @@ Perl_vnormal(pTHX_ SV *vs)
901
901
#endif
902
902
{
903
903
I32 i , len , digit ;
904
- bool alpha = FALSE;
905
904
SV * sv ;
906
905
AV * av ;
907
906
@@ -912,9 +911,6 @@ Perl_vnormal(pTHX_ SV *vs)
912
911
if ( ! vs )
913
912
Perl_croak (aTHX_ "Invalid version object" );
914
913
915
- if ( hv_exists (MUTABLE_HV (vs ), "alpha" , 5 ) )
916
- alpha = TRUE;
917
-
918
914
av = MUTABLE_AV (SvRV (* hv_fetchs (MUTABLE_HV (vs ), "version" , FALSE)));
919
915
920
916
len = av_len (av );
@@ -1003,8 +999,6 @@ Perl_vcmp(pTHX_ SV *lhv, SV *rhv)
1003
999
{
1004
1000
SSize_t i ,l ,m ,r ;
1005
1001
I32 retval ;
1006
- bool lalpha = FALSE;
1007
- bool ralpha = FALSE;
1008
1002
I32 left = 0 ;
1009
1003
I32 right = 0 ;
1010
1004
AV * lav , * rav ;
@@ -1019,13 +1013,9 @@ Perl_vcmp(pTHX_ SV *lhv, SV *rhv)
1019
1013
1020
1014
/* get the left hand term */
1021
1015
lav = MUTABLE_AV (SvRV (* hv_fetchs (MUTABLE_HV (lhv ), "version" , FALSE)));
1022
- if ( hv_exists (MUTABLE_HV (lhv ), "alpha" , 5 ) )
1023
- lalpha = TRUE;
1024
1016
1025
1017
/* and the right hand term */
1026
1018
rav = MUTABLE_AV (SvRV (* hv_fetchs (MUTABLE_HV (rhv ), "version" , FALSE)));
1027
- if ( hv_exists (MUTABLE_HV (rhv ), "alpha" , 5 ) )
1028
- ralpha = TRUE;
1029
1019
1030
1020
l = av_len (lav );
1031
1021
r = av_len (rav );
You can’t perform that action at this time.
0 commit comments