From 612dcf3b9981c6f1e4f61173e94a05a5009db442 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 12 Nov 2010 22:29:08 -0600 Subject: Revert "explicitly don't pass args to the accessors" This reverts commit a84abffa49e17e9469fa7e79c4c8779878b23ba2. errr, the invocant is totally an arg --- Stash.xs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Stash.xs') diff --git a/Stash.xs b/Stash.xs index 7cb0705..dec97df 100644 --- a/Stash.xs +++ b/Stash.xs @@ -168,7 +168,7 @@ HV *_get_namespace(SV *self) XPUSHs(self); PUTBACK; - call_method("namespace", G_SCALAR | G_NOARGS); + call_method("namespace", G_SCALAR); SPAGAIN; ret = POPs; @@ -186,7 +186,7 @@ SV *_get_name(SV *self) XPUSHs(self); PUTBACK; - call_method("name", G_SCALAR | G_NOARGS); + call_method("name", G_SCALAR); SPAGAIN; ret = POPs; -- cgit v1.2.3-54-g00ecf