You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2012/04/22 23:25:55 UTC

[lucy-commits] svn commit: r1328979 - /lucy/trunk/clownfish/src/CFCMethod.c

Author: marvin
Date: Sun Apr 22 21:25:55 2012
New Revision: 1328979

URL: http://svn.apache.org/viewvc?rev=1328979&view=rev
Log:
Remove obsolete member vars.

Modified:
    lucy/trunk/clownfish/src/CFCMethod.c

Modified: lucy/trunk/clownfish/src/CFCMethod.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/src/CFCMethod.c?rev=1328979&r1=1328978&r2=1328979&view=diff
==============================================================================
--- lucy/trunk/clownfish/src/CFCMethod.c (original)
+++ lucy/trunk/clownfish/src/CFCMethod.c Sun Apr 22 21:25:55 2012
@@ -37,8 +37,6 @@
 struct CFCMethod {
     CFCFunction function;
     char *macro_sym;
-    char *short_typedef;
-    char *full_typedef;
     char *full_callback_sym;
     char *full_override_sym;
     int is_final;
@@ -126,8 +124,6 @@ CFCMethod_init(CFCMethod *self, CFCParce
     }
 
     self->macro_sym     = CFCUtil_strdup(macro_sym);
-    self->short_typedef = NULL;
-    self->full_typedef  = NULL;
     self->is_final      = is_final;
     self->is_abstract   = is_abstract;
 
@@ -149,8 +145,6 @@ CFCMethod_init(CFCMethod *self, CFCParce
 void
 CFCMethod_destroy(CFCMethod *self) {
     FREEMEM(self->macro_sym);
-    FREEMEM(self->short_typedef);
-    FREEMEM(self->full_typedef);
     FREEMEM(self->full_callback_sym);
     FREEMEM(self->full_override_sym);
     CFCFunction_destroy((CFCFunction*)self);