In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/5cd8b2253cf1f6f21dce7c3402b05c886f4da099?hp=428c1478168bb1c70dedae2f1cda59a305dc0eba>

- Log -----------------------------------------------------------------
commit 5cd8b2253cf1f6f21dce7c3402b05c886f4da099
Author: Karl Williamson <[email protected]>
Date:   Tue Jul 12 21:44:00 2016 -0600

    regexec.c: Silence compiler warning
    
    A formal parameter was missing a 'const'
-----------------------------------------------------------------------

Summary of changes:
 regexec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regexec.c b/regexec.c
index 448a605..60ff2a0 100644
--- a/regexec.c
+++ b/regexec.c
@@ -4294,7 +4294,7 @@ S_setup_EXACTISH_ST_c1_c2(pTHX_ const regnode * const 
text_node, int *c1p,
 }
 
 STATIC bool
-S_isGCB(pTHX_ const GCB_enum before, const GCB_enum after, const U8 * const 
strbeg, const U8 * curpos, const bool utf8_target)
+S_isGCB(pTHX_ const GCB_enum before, const GCB_enum after, const U8 * const 
strbeg, const U8 * const curpos, const bool utf8_target)
 {
     /* returns a boolean indicating if there is a Grapheme Cluster Boundary
      * between the inputs.  See http://www.unicode.org/reports/tr29/. */

--
Perl5 Master Repository

Reply via email to