[svn:parrot] r41685 - branches/pcc_reapply/src/call

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun Oct 4 12:53:25 UTC 2009


Author: whiteknight
Date: Sun Oct  4 12:53:25 2009
New Revision: 41685
URL: https://trac.parrot.org/parrot/changeset/41685

Log:
[pcc] fix headerizer problem. This file doesn't have any static functions anymore so no need to have a static forward declaration section

Modified:
   branches/pcc_reapply/src/call/ops.c

Modified: branches/pcc_reapply/src/call/ops.c
==============================================================================
--- branches/pcc_reapply/src/call/ops.c	Sun Oct  4 12:36:28 2009	(r41684)
+++ branches/pcc_reapply/src/call/ops.c	Sun Oct  4 12:53:25 2009	(r41685)
@@ -23,28 +23,6 @@
 
 /* HEADERIZER HFILE: include/parrot/call.h */
 
-/* HEADERIZER BEGIN: static */
-/* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
-
-PARROT_WARN_UNUSED_RESULT
-PARROT_CANNOT_RETURN_NULL
-static PMC * runops_args(PARROT_INTERP,
-    ARGIN(PMC *sub),
-    ARGIN_NULLOK(PMC *obj),
-    SHIM(STRING *meth),
-    ARGIN(const char *sig),
-    va_list ap)
-        __attribute__nonnull__(1)
-        __attribute__nonnull__(2)
-        __attribute__nonnull__(5);
-
-#define ASSERT_ARGS_runops_args __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(interp) \
-    , PARROT_ASSERT_ARG(sub) \
-    , PARROT_ASSERT_ARG(sig))
-/* Don't modify between HEADERIZER BEGIN / HEADERIZER END.  Your changes will be lost. */
-/* HEADERIZER END: static */
-
 #define STACKED_EXCEPTIONS 1
 #define RUNLOOP_TRACE      0
 


More information about the parrot-commits mailing list