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 2015/10/07 12:35:10 UTC

lucy git commit: Adjust for Class#Foster_Obj removal

Repository: lucy
Updated Branches:
  refs/heads/master a347c8170 -> f533036a5


Adjust for Class#Foster_Obj removal


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

Branch: refs/heads/master
Commit: f533036a580bfe125c39274820f857fdd684fba1
Parents: a347c81
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Sep 26 18:32:52 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Wed Oct 7 12:32:30 2015 +0200

----------------------------------------------------------------------
 perl/buildlib/Lucy/Build/Binding/Misc.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/f533036a/perl/buildlib/Lucy/Build/Binding/Misc.pm
----------------------------------------------------------------------
diff --git a/perl/buildlib/Lucy/Build/Binding/Misc.pm b/perl/buildlib/Lucy/Build/Binding/Misc.pm
index 20bdbca..77fd9af 100644
--- a/perl/buildlib/Lucy/Build/Binding/Misc.pm
+++ b/perl/buildlib/Lucy/Build/Binding/Misc.pm
@@ -98,7 +98,7 @@ PPCODE:
     lucy_RAMFileHandle *file_handle
         = lucy_RAMFH_open(NULL, LUCY_FH_READ_ONLY, ram_file);
     lucy_InStream *instream = lucy_InStream_open((cfish_Obj*)file_handle);
-    cfish_Obj *self = CFISH_Class_Foster_Obj(klass, blank_obj);
+    cfish_Obj *self = XSBind_foster_obj(aTHX_ blank_obj, klass);
     cfish_Obj *deserialized = lucy_Freezer_deserialize(self, instream);
 
     CFISH_UNUSED_VAR(cloning);