diff options
author | Karl Williamson <khw@cpan.org> | 2014-11-25 12:00:48 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-11-26 09:18:33 -0700 |
commit | 636dfd4a89e23adad94a82ddc63188837eea8a48 (patch) | |
tree | 014f9ae206400a3a4ee6afb87c06899a4d0f2296 /proto.h | |
parent | 0f602692adc580e73d2236976e9da7fec968ca93 (diff) | |
download | perl-636dfd4a89e23adad94a82ddc63188837eea8a48.tar.gz |
Mark is_ascii_string() as requiring looking at return value
There's no reason to call it otherwise; there are no side effects.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1869,6 +1869,7 @@ PERL_CALLCONV bool Perl_isIDFIRST_lazy(pTHX_ const char* p) assert(p) PERL_CALLCONV bool Perl_is_ascii_string(const U8 *s, STRLEN len) + __attribute__warn_unused_result__ __attribute__nonnull__(1); #define PERL_ARGS_ASSERT_IS_ASCII_STRING \ assert(s) |