You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2013/05/18 21:23:49 UTC

[lucy-commits] [04/15] git commit: refs/heads/install-c-library - Don't include charmony.h in class headers

Don't include charmony.h in class headers

It's already included via parcel.h.


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

Branch: refs/heads/install-c-library
Commit: 3c8a6317afde6f1479f8c143234ebbf6386948b3
Parents: 6716917
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Fri May 17 23:43:56 2013 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat May 18 13:12:47 2013 +0200

----------------------------------------------------------------------
 clownfish/compiler/src/CFCBindClass.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/3c8a6317/clownfish/compiler/src/CFCBindClass.c
----------------------------------------------------------------------
diff --git a/clownfish/compiler/src/CFCBindClass.c b/clownfish/compiler/src/CFCBindClass.c
index e483530..f83a5c1 100644
--- a/clownfish/compiler/src/CFCBindClass.c
+++ b/clownfish/compiler/src/CFCBindClass.c
@@ -125,7 +125,6 @@ S_to_c_header_inert(CFCBindClass *self) {
     char *short_names     = S_short_names(self);
 
     char pattern[] =
-        "#include \"charmony.h\"\n"
         "#include \"%sparcel.h\"\n"
         "\n"
         "/* Declare this class's inert variables.\n"
@@ -167,7 +166,6 @@ S_to_c_header_dynamic(CFCBindClass *self) {
     char *short_names           = S_short_names(self);
 
     char pattern[] =
-        "#include \"charmony.h\"\n"
         "#include \"%sparcel.h\"\n"
         "\n"
         "/* Include the header for this class's parent. \n"