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 2016/02/06 15:17:40 UTC

[07/14] lucy-clownfish git commit: Make HashIterator public

Make HashIterator public


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

Branch: refs/heads/master
Commit: a7f797c657111e9a56722d767ff133637cdf0a34
Parents: 89157c3
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Wed Feb 3 14:52:01 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Wed Feb 3 15:50:07 2016 +0100

----------------------------------------------------------------------
 runtime/core/Clownfish/HashIterator.cfh | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/a7f797c6/runtime/core/Clownfish/HashIterator.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/HashIterator.cfh b/runtime/core/Clownfish/HashIterator.cfh
index c346bb2..74ebc44 100644
--- a/runtime/core/Clownfish/HashIterator.cfh
+++ b/runtime/core/Clownfish/HashIterator.cfh
@@ -20,7 +20,9 @@ parcel Clownfish;
  * Hashtable Iterator.
  */
 
-final class Clownfish::HashIterator nickname HashIter inherits Clownfish::Obj {
+public final class Clownfish::HashIterator nickname HashIter
+    inherits Clownfish::Obj {
+
     Hash   *hash;
     size_t  tick;
     size_t  capacity;
@@ -28,10 +30,10 @@ final class Clownfish::HashIterator nickname HashIter inherits Clownfish::Obj {
     inert void
     init_class();
 
-    inert incremented HashIterator*
+    public inert incremented HashIterator*
     new(Hash *hash);
 
-    inert HashIterator*
+    public inert HashIterator*
     init(HashIterator *self, Hash *hash);
 
     public bool