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/12/01 17:10:11 UTC

[5/6] lucy-clownfish git commit: Rename fetch_obj to fetch_raw

Rename fetch_obj to fetch_raw


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

Branch: refs/heads/master
Commit: 5c1b375d90aaf1ea18c0fe890b1fc6244955dbbe
Parents: 3520bdf
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Tue Dec 1 14:45:33 2015 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Tue Dec 1 16:06:03 2015 +0100

----------------------------------------------------------------------
 runtime/perl/buildlib/Clownfish/Build/Binding.pm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/5c1b375d/runtime/perl/buildlib/Clownfish/Build/Binding.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/buildlib/Clownfish/Build/Binding.pm b/runtime/perl/buildlib/Clownfish/Build/Binding.pm
index 1198f5a..6424b41 100644
--- a/runtime/perl/buildlib/Clownfish/Build/Binding.pm
+++ b/runtime/perl/buildlib/Clownfish/Build/Binding.pm
@@ -502,7 +502,7 @@ END_POD
     my $xs_code = <<'END_XS_CODE';
 MODULE = Clownfish    PACKAGE = Clownfish::Hash
 SV*
-fetch_obj(self, key)
+fetch_raw(self, key)
     cfish_Hash *self;
     cfish_String *key;
 CODE:
@@ -865,14 +865,14 @@ END_POD
 MODULE = Clownfish   PACKAGE = Clownfish::Vector
 
 SV*
-pop_obj(self)
+pop_raw(self)
     cfish_Vector *self;
 CODE:
     RETVAL = CFISH_OBJ_TO_SV_NOINC(CFISH_Vec_Pop(self));
 OUTPUT: RETVAL
 
 SV*
-delete_obj(self, tick)
+delete_raw(self, tick)
     cfish_Vector *self;
     uint32_t    tick;
 CODE:
@@ -891,7 +891,7 @@ PPCODE:
 }
 
 SV*
-fetch_obj(self, tick)
+fetch_raw(self, tick)
     cfish_Vector *self;
     uint32_t     tick;
 CODE: