Repository: lucy-clownfish
Updated Branches:
  refs/heads/py_exp13 [created] 9d058f4b3


Add missing `static` modifier.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/4b8d87bc
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/4b8d87bc
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/4b8d87bc

Branch: refs/heads/py_exp13
Commit: 4b8d87bcbe098f92e7148ab84e27b619c089218e
Parents: 7c80fb8
Author: Marvin Humphrey <[email protected]>
Authored: Wed Feb 24 15:19:18 2016 -0800
Committer: Marvin Humphrey <[email protected]>
Committed: Wed Feb 24 15:19:18 2016 -0800

----------------------------------------------------------------------
 compiler/src/CFCPython.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/4b8d87bc/compiler/src/CFCPython.c
----------------------------------------------------------------------
diff --git a/compiler/src/CFCPython.c b/compiler/src/CFCPython.c
index a2b13a4..e17feeb 100644
--- a/compiler/src/CFCPython.c
+++ b/compiler/src/CFCPython.c
@@ -39,7 +39,7 @@ struct CFCPython {
     char *footer;
 };
 
-void
+static void
 S_destroy(CFCPython *self);
 
 static const CFCMeta CFCPYTHON_META = {
@@ -58,7 +58,7 @@ CFCPython_new(CFCHierarchy *hierarchy) {
     return self;
 }
 
-void
+static void
 S_destroy(CFCPython *self) {
     CFCBase_decref((CFCBase*)self->hierarchy);
     FREEMEM(self->header);

Reply via email to