summaryrefslogtreecommitdiff
path: root/inline.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-01-16 16:07:12 -0700
committerKarl Williamson <khw@cpan.org>2020-01-23 15:46:56 -0700
commit6bbb95d461386ba11dd9774938f86c634974ae58 (patch)
tree5d9006b53b610b916e35ba3be135e48b64f089cb /inline.h
parent14fe5f8a20e1e15504b894f3df0861524250bd64 (diff)
downloadperl-6bbb95d461386ba11dd9774938f86c634974ae58.tar.gz
Change return type of regcurly to bool
This internal function is more properly bool, not I32.
Diffstat (limited to 'inline.h')
-rw-r--r--inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inline.h b/inline.h
index 621857a7fb..e4bd680961 100644
--- a/inline.h
+++ b/inline.h
@@ -1987,7 +1987,7 @@ S_lossless_NV_to_IV(const NV nv, IV *ivp)
- regcurly - a little FSA that accepts {\d+,?\d*}
Pulled from reg.c.
*/
-PERL_STATIC_INLINE I32
+PERL_STATIC_INLINE bool
S_regcurly(const char *s)
{
PERL_ARGS_ASSERT_REGCURLY;