In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/d7f10d93694c1509945bc189993708c89f7a1df3?hp=add424dabf9dadd0817fac9b1bf4c5d4e8bbd196>

- Log -----------------------------------------------------------------
commit d7f10d93694c1509945bc189993708c89f7a1df3
Author: James E Keenan <[email protected]>
Date:   Sun Feb 5 18:04:36 2017 -0500

    Remove extra terminating semicolon
    
    Detected by compiling with clang under -Weverything, which includes 
-Wextra-semi.
    
    Reviewed by jhedden++.
    
    Increment $VERSION in threads.pm.
-----------------------------------------------------------------------

Summary of changes:
 dist/threads/lib/threads.pm | 2 +-
 dist/threads/threads.xs     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/threads/lib/threads.pm b/dist/threads/lib/threads.pm
index 14bf92040f..b2bd872344 100644
--- a/dist/threads/lib/threads.pm
+++ b/dist/threads/lib/threads.pm
@@ -5,7 +5,7 @@ use 5.008;
 use strict;
 use warnings;
 
-our $VERSION = '2.12';
+our $VERSION = '2.13';
 my $XS_VERSION = $VERSION;
 $VERSION = eval $VERSION;
 
diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs
index 579fff37a8..838276545c 100644
--- a/dist/threads/threads.xs
+++ b/dist/threads/threads.xs
@@ -1022,7 +1022,7 @@ S_ithread_create(
 #endif
 }
 #if defined(__clang__) || defined(__clang)
-CLANG_DIAG_RESTORE;
+CLANG_DIAG_RESTORE
 #endif
 
 #endif /* USE_ITHREADS */

--
Perl5 Master Repository

Reply via email to