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/08/30 19:28:44 UTC

[11/19] lucy git commit: Make I32Array public

Make I32Array public

Needed for C bindings.


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

Branch: refs/heads/master
Commit: 04f1edf807ef11af0d956135042c8a6899bd98e0
Parents: c6682c6
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sun Aug 23 15:46:14 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Tue Aug 25 12:45:53 2015 +0200

----------------------------------------------------------------------
 core/Lucy/Object/I32Array.cfh | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/04f1edf8/core/Lucy/Object/I32Array.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Object/I32Array.cfh b/core/Lucy/Object/I32Array.cfh
index 64f1d65..84f436d 100644
--- a/core/Lucy/Object/I32Array.cfh
+++ b/core/Lucy/Object/I32Array.cfh
@@ -16,37 +16,37 @@
 
 parcel Lucy;
 
-class Lucy::Object::I32Array nickname I32Arr inherits Clownfish::Obj {
+public class Lucy::Object::I32Array nickname I32Arr inherits Clownfish::Obj {
     int32_t  *ints;
     uint32_t  size;
 
-    inert incremented I32Array*
+    public inert incremented I32Array*
     new(int32_t *ints, uint32_t size);
 
     inert incremented I32Array*
     new_steal(int32_t *ints, uint32_t size);
 
-    inert incremented I32Array*
+    public inert incremented I32Array*
     new_blank(uint32_t size);
 
-    inert I32Array*
+    public inert I32Array*
     init(I32Array *self, int32_t *ints, uint32_t size);
 
     /** Set the value at `tick`, or throw an error if
      * `tick` is out of bounds.
      */
-    void
+    public void
     Set(I32Array *self, uint32_t tick, int32_t value);
 
     /** Return the value at `tick`, or throw an error if
      * `tick` is out of bounds.
      */
-    int32_t
+    public int32_t
     Get(I32Array *self, uint32_t tick);
 
     /** Accessor for 'size' member.
      */
-    uint32_t
+    public uint32_t
     Get_Size(I32Array *self);
 
     public void