Repository: lucy Updated Branches: refs/heads/master c94acc5b7 -> 79a776911
Register WRAP functions in custom `init`. Since Lucy has its own custom `init` function, it needs to invoke `initWRAP` manually in order for `clownfish.WRAPAny` to know about Lucy-specific types. Project: http://git-wip-us.apache.org/repos/asf/lucy/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/3d4a0b6c Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/3d4a0b6c Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/3d4a0b6c Branch: refs/heads/master Commit: 3d4a0b6cf0cc0131b10c452dba7bd91414780b3f Parents: b69adb8 Author: Marvin Humphrey <[email protected]> Authored: Tue Aug 11 13:08:33 2015 -0700 Committer: Marvin Humphrey <[email protected]> Committed: Wed Sep 9 16:17:59 2015 -0700 ---------------------------------------------------------------------- go/lucy/lucy.go | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy/blob/3d4a0b6c/go/lucy/lucy.go ---------------------------------------------------------------------- diff --git a/go/lucy/lucy.go b/go/lucy/lucy.go index fcddfbd..37d7f1c 100644 --- a/go/lucy/lucy.go +++ b/go/lucy/lucy.go @@ -191,6 +191,7 @@ func init() { C.GOLUCY_glue_exported_symbols() C.lucy_bootstrap_parcel() registry = newObjRegistry(16) + initWRAP() } //export GOLUCY_RegexTokenizer_init
