From bfefaec2e78fd51f89738f65efad8ffaf0017da3 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Thu, 7 Mar 2019 08:42:59 +0000 Subject: [PATCH] add comments above Perl_newSTUB() --- op.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/op.c b/op.c index d24208e..ffed2bd 100644 --- a/op.c +++ b/op.c @@ -10834,6 +10834,10 @@ Perl_newXS_len_flags(pTHX_ const char *name, STRLEN len, return cv; } +/* Add a stub CV to a typeglob. + * This is the implementation of a forward declaration, 'sub foo';' + */ + CV * Perl_newSTUB(pTHX_ GV *gv, bool fake) { -- 1.8.3.1