perl.cvs.parrot
[Top] [All Lists]

[svn:parrot] r19157 - trunk/src

Subject: [svn:parrot] r19157 - trunk/src
From:
Date: Tue, 19 Jun 2007 19:29:16 -0700 PDT
Newsgroups: perl.cvs.parrot

Author: petdance
Date: Tue Jun 19 19:29:14 2007
New Revision: 19157

Modified:
   trunk/src/packfile.c
   trunk/src/stacks.c

Log:
Added UNUSED vars

Modified: trunk/src/packfile.c
==============================================================================
--- trunk/src/packfile.c        (original)
+++ trunk/src/packfile.c        Tue Jun 19 19:29:14 2007
@@ -2823,6 +2823,7 @@
 {
     PackFile_Constant * const self =
         mem_allocate_zeroed_typed(PackFile_Constant);
+    UNUSED(interp);
 
     self->type = PFC_NONE;
 

Modified: trunk/src/stacks.c
==============================================================================
--- trunk/src/stacks.c  (original)
+++ trunk/src/stacks.c  Tue Jun 19 19:29:14 2007
@@ -383,6 +383,8 @@
 get_entry_type(Interp *interp, const Stack_Entry_t *entry /*NN*/)
     /* PURE, WARN_UNUSED */
 {
+    UNUSED(interp);
+
     return entry->entry_type;
 }
 

<Prev in Thread] Current Thread [Next in Thread>
  • [svn:parrot] r19157 - trunk/src, petdance <=