diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-11-09 08:29:58 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-11-09 09:04:33 -0700 |
commit | 9d63fa07f5cff6fc12e4f94d4182560e5cfed77e (patch) | |
tree | 3a88c166919c4d3c3d714a24574df0a93db14f4c /regcomp.h | |
parent | a1dde8dee0a7efc73bdb7c985e74f1461e153f12 (diff) | |
download | perl-9d63fa07f5cff6fc12e4f94d4182560e5cfed77e.tar.gz |
Change __attribute_unused__ to PERL_UNUSED_DECL
The latter is the Perl standard way of making this declaration
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -837,7 +837,7 @@ re.pm, especially to the documentation. #ifdef DEBUGGING #define GET_RE_DEBUG_FLAGS_DECL VOL IV re_debug_flags \ - __attribute__unused__ = 0; GET_RE_DEBUG_FLAGS; + PERL_UNUSED_DECL = 0; GET_RE_DEBUG_FLAGS; #define RE_PV_COLOR_DECL(rpv,rlen,isuni,dsv,pv,l,m,c1,c2) \ const char * const rpv = \ |