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 <[email protected]> Authored: Sat Mar 21 02:35:27 2015 -0700 Committer: Marvin Humphrey <[email protected]> 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) }
