diff options
author | Yves Orton <demerphq@gmail.com> | 2023-02-25 13:37:21 +0100 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2023-02-26 00:31:44 +0800 |
commit | 9888ef92c94011696dd8a2ff87209296b2baebaa (patch) | |
tree | 16cb81a82bf343978f10bb4804c856576bf540bc /t | |
parent | f7783cf76f7b60437f666fa1b5007237e48c65ad (diff) | |
download | perl-9888ef92c94011696dd8a2ff87209296b2baebaa.tar.gz |
regcomp.c - remove unused debug logic that warns under clang.
And by removing it we silence the following build warning:
regcomp.c:2285:28: warning: format specifies type 'int' but the argument has type 'I32' (aka 'long') [-Wformat]
parno, RExC_parno_to_logical[parno], RExC_parno_to_logical_next[parno]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
./regcomp_internal.h:212:37: note: expanded from macro 'RExC_parno_to_logical'
#define RExC_parno_to_logical (pRExC_state->parno_to_logical)
^
regcomp.c:2285:58: warning: format specifies type 'int' but the argument has type 'I32' (aka 'long') [-Wformat]
parno, RExC_parno_to_logical[parno], RExC_parno_to_logical_next[parno]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./regcomp_internal.h:213:37: note: expanded from macro 'RExC_parno_to_logical_next'
#define RExC_parno_to_logical_next (pRExC_state->parno_to_logical_next)
^
2 warnings generated.
Diffstat (limited to 't')
0 files changed, 0 insertions, 0 deletions