In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/90659255338e4b2a5a99c585d4ccaf6424186d2e?hp=bec5a1ba1ddeb36f189da30307757fead2933e93>

- Log -----------------------------------------------------------------
commit 90659255338e4b2a5a99c585d4ccaf6424186d2e
Author: James E Keenan <[email protected]>
Date:   Fri Jan 6 17:56:50 2017 -0500

    Eliminate two unused variables detected by clang.
    
    "warning: unused variable 'i' [-Wunused-variable]"
-----------------------------------------------------------------------

Summary of changes:
 regcomp.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/regcomp.c b/regcomp.c
index dc94b39cba..2e7999f39e 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -10068,9 +10068,6 @@ Perl__invlistEQ(pTHX_ SV* const a, SV* const b, const 
bool complement_b)
     UV len_a = _invlist_len(a);
     UV len_b = _invlist_len(b);
 
-    UV i = 0;              /* current index into the arrays */
-    bool retval = TRUE;     /* Assume are identical until proven otherwise */
-
     PERL_ARGS_ASSERT__INVLISTEQ;
 
     /* If are to compare 'a' with the complement of b, set it

--
Perl5 Master Repository

Reply via email to