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/06 19:51:52 UTC

lucy-clownfish git commit: Make Blob, String, and StringIterator public

Repository: lucy-clownfish
Updated Branches:
  refs/heads/master a7af0130b -> 49be3026c


Make Blob, String, and StringIterator 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/49be3026
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/49be3026
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/49be3026

Branch: refs/heads/master
Commit: 49be3026cbb9f5765f95052b3a17859c4a955e5e
Parents: a7af013
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Aug 6 19:49:56 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Aug 6 19:49:56 2015 +0200

----------------------------------------------------------------------
 runtime/core/Clownfish/Blob.cfh   | 2 +-
 runtime/core/Clownfish/String.cfh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/49be3026/runtime/core/Clownfish/Blob.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Blob.cfh b/runtime/core/Clownfish/Blob.cfh
index 2ad7a4a..46b9783 100644
--- a/runtime/core/Clownfish/Blob.cfh
+++ b/runtime/core/Clownfish/Blob.cfh
@@ -20,7 +20,7 @@ parcel Clownfish;
  * Immutable buffer holding arbitrary bytes.
  */
 
-final class Clownfish::Blob inherits Clownfish::Obj {
+public final class Clownfish::Blob inherits Clownfish::Obj {
 
     const char *buf;
     size_t      size;

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/49be3026/runtime/core/Clownfish/String.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/String.cfh b/runtime/core/Clownfish/String.cfh
index 932f36b..e422cbf 100644
--- a/runtime/core/Clownfish/String.cfh
+++ b/runtime/core/Clownfish/String.cfh
@@ -27,7 +27,7 @@ __END_C__
  * Immutable string holding Unicode characters.
  */
 
-final class Clownfish::String nickname Str
+public final class Clownfish::String nickname Str
     inherits Clownfish::Obj {
 
     const char *ptr;
@@ -285,7 +285,7 @@ final class Clownfish::String nickname Str
     Tail(String *self);
 }
 
-final class Clownfish::StringIterator nickname StrIter
+public final class Clownfish::StringIterator nickname StrIter
     inherits Clownfish::Obj {
 
     String *string;