Repository: lucy-clownfish
Updated Branches:
  refs/heads/master 06a7e809e -> 0ee7bbfdf


Hide all implementing functions

This was made possible by recent changes to final method dispatch.


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

Branch: refs/heads/master
Commit: 0ee7bbfdf51a17e987a3655383421ba3d1116d07
Parents: 87e9aea
Author: Nick Wellnhofer <wellnho...@aevum.de>
Authored: Thu Jul 16 19:22:09 2015 +0200
Committer: Nick Wellnhofer <wellnho...@aevum.de>
Committed: Thu Jul 23 15:34:18 2015 +0200

----------------------------------------------------------------------
 compiler/src/CFCBindClass.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/0ee7bbfd/compiler/src/CFCBindClass.c
----------------------------------------------------------------------
diff --git a/compiler/src/CFCBindClass.c b/compiler/src/CFCBindClass.c
index 3ebd2e8..d1cebf6 100644
--- a/compiler/src/CFCBindClass.c
+++ b/compiler/src/CFCBindClass.c
@@ -626,8 +626,7 @@ S_sub_declarations(CFCBindClass *self) {
     for (int i = 0; fresh_methods[i] != NULL; i++) {
         CFCMethod *method = fresh_methods[i];
         char *dec = CFCBindMeth_imp_declaration(method, self->client);
-        declarations = CFCUtil_cat(declarations, PREFIX, "VISIBLE ", dec,
-                                   "\n\n", NULL);
+        declarations = CFCUtil_cat(declarations, dec, "\n\n", NULL);
         FREEMEM(dec);
     }
     return declarations;

Reply via email to