diff options
author | David Mitchell <davem@iabyn.com> | 2016-03-28 10:52:18 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-03-28 11:04:36 +0100 |
commit | 9d9905599cad5eeb33b2a64c023b97005694fbcd (patch) | |
tree | 319eb231de52a6b72cc87415d10fc95ba5b2c16a /cop.h | |
parent | 4caf7d8c4666d39b6b752a52ec5e19d9504f5f31 (diff) | |
download | perl-9d9905599cad5eeb33b2a64c023b97005694fbcd.tar.gz |
silence -Wparentheses-equality
Clang has taken it upon itself to warn when an equality is wrapped in
double parentheses, e.g.
((foo == bar))
Which is a bit dumb, as any code along the lines of
#define isBAR (foo == BAR)
if (isBAR) {}
will trigger the warning.
This commit shuts clang up by putting in a harmless cast:
#define isBAR cBOOL(foo == BAR)
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1055,8 +1055,8 @@ typedef struct stackinfo PERL_SI; } \ } STMT_END -#define IN_PERL_COMPILETIME (PL_curcop == &PL_compiling) -#define IN_PERL_RUNTIME (PL_curcop != &PL_compiling) +#define IN_PERL_COMPILETIME cBOOL(PL_curcop == &PL_compiling) +#define IN_PERL_RUNTIME cBOOL(PL_curcop != &PL_compiling) |