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 2015/03/21 10:48:51 UTC

[3/4] lucy-clownfish git commit: Restore dummy func to prevent Lucy from breaking.

Restore dummy func to prevent Lucy from breaking.


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

Branch: refs/heads/master
Commit: ecc65d72efcf16c02916e6fba15dc6ef302b27db
Parents: e45af21
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Sat Mar 21 02:35:27 2015 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Sat Mar 21 02:35:27 2015 -0700

----------------------------------------------------------------------
 compiler/go/cfc/cfc.go | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ecc65d72/compiler/go/cfc/cfc.go
----------------------------------------------------------------------
diff --git a/compiler/go/cfc/cfc.go b/compiler/go/cfc/cfc.go
index 2944de5..2a1e44f 100644
--- a/compiler/go/cfc/cfc.go
+++ b/compiler/go/cfc/cfc.go
@@ -152,6 +152,10 @@ func (obj *BindC) finalize() {
 	C.CFCBase_decref((*C.CFCBase)(unsafe.Pointer(obj.ref)))
 }
 
+func (obj *BindC) WriteCallbacks() {
+	// no-op
+}
+
 func (obj *BindC) WriteHostDefs() {
 	C.CFCC_write_hostdefs(obj.ref)
 }