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 <[email protected]> Authored: Wed Feb 3 14:52:01 2016 +0100 Committer: Nick Wellnhofer <[email protected]> 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
