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 2011/07/25 22:28:37 UTC

[lucy-commits] svn commit: r1150886 - in /incubator/lucy/trunk/clownfish/src: CFCMethod.c CFCMethod.h

Author: marvin
Date: Mon Jul 25 20:28:36 2011
New Revision: 1150886

URL: http://svn.apache.org/viewvc?rev=1150886&view=rev
Log:
Add a missing symbol.

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

Modified: incubator/lucy/trunk/clownfish/src/CFCMethod.c
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/src/CFCMethod.c?rev=1150886&r1=1150885&r2=1150886&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/src/CFCMethod.c (original)
+++ incubator/lucy/trunk/clownfish/src/CFCMethod.c Mon Jul 25 20:28:36 2011
@@ -285,6 +285,11 @@ CFCMethod_get_macro_sym(CFCMethod *self)
     return self->macro_sym;
 }
 
+const char*
+CFCMethod_micro_sym(CFCMethod *self) {
+    return CFCSymbol_micro_sym((CFCSymbol*)self);
+}
+
 static void
 S_update_typedefs(CFCMethod *self, const char *short_sym) {
     FREEMEM(self->short_typedef);

Modified: incubator/lucy/trunk/clownfish/src/CFCMethod.h
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/src/CFCMethod.h?rev=1150886&r1=1150885&r2=1150886&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/src/CFCMethod.h (original)
+++ incubator/lucy/trunk/clownfish/src/CFCMethod.h Mon Jul 25 20:28:36 2011
@@ -80,6 +80,9 @@ const char*
 CFCMethod_get_macro_sym(CFCMethod *self);
 
 const char*
+CFCMethod_micro_sym(CFCMethod *self);
+
+const char*
 CFCMethod_short_typedef(CFCMethod *self);
 
 const char*