Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I wonder if adding the symbols in a call checker associated with reduce would be early enough.
#define PERL_NO_GET_CONTEXT #include "EXTERN.h" #include "perl.h" #include "XSUB.h" STATIC OP* ck_reduce(pTHX_ OP* o, GV* namegv, SV* ckobj) { #define check_reduce(a,b,c) check_reduce(aTHX_ a,b,c) PERL_UNUSED_ARG(namegv); PERL_UNUSED_ARG(ckobj); (void*)gv_fetchpvs("a", GV_ADD|GV_ADDMULTI, SVt_PV)); (void*)gv_fetchpvs("b", GV_ADD|GV_ADDMULTI, SVt_PV)); return o; } /* ======================================== */ MODULE = List::Util PACKAGE = List::Util BOOT: { CV* const reducecv = get_cvn_flags("List::Util::reduce", 18, GV_ADD +); cv_set_call_checker(reducecv, ck_reduce, &PL_sv_undef); }

There's something missing since $a and $b's package isn't mentioned anywhere, but you should be able to grab the right package since the checker is called for each call of reduce.

If this works, the warning will be disabled if and only if reduce is used, and only for the package using it.


In reply to Re: Eliminating "used only once" warnings from List::Util::reduce by ikegami
in thread Eliminating "used only once" warnings from List::Util::reduce by davido

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-23 14:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found