Make Blob constructors 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/b42ea456
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/b42ea456
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/b42ea456

Branch: refs/heads/master
Commit: b42ea456df9879686e270654af8e224db53b596e
Parents: b99a5ec
Author: Nick Wellnhofer <wellnho...@aevum.de>
Authored: Tue Nov 17 16:06:36 2015 +0100
Committer: Nick Wellnhofer <wellnho...@aevum.de>
Committed: Tue Nov 17 19:08:43 2015 +0100

----------------------------------------------------------------------
 runtime/core/Clownfish/Blob.cfh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/b42ea456/runtime/core/Clownfish/Blob.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Blob.cfh b/runtime/core/Clownfish/Blob.cfh
index 46b9783..0be3226 100644
--- a/runtime/core/Clownfish/Blob.cfh
+++ b/runtime/core/Clownfish/Blob.cfh
@@ -26,22 +26,22 @@ public final class Clownfish::Blob inherits Clownfish::Obj {
     size_t      size;
     bool        owns_buf;
 
-    inert incremented Blob*
+    public inert incremented Blob*
     new(const char *buf, size_t size);
 
-    inert Blob*
+    public inert Blob*
     init(Blob *self, const char *buf, size_t size);
 
-    inert incremented Blob*
+    public inert incremented Blob*
     new_steal(char *buf, size_t size);
 
-    inert Blob*
+    public inert Blob*
     init_steal(Blob *self, char *buf, size_t size);
 
-    inert incremented Blob*
+    public inert incremented Blob*
     new_wrap(const char *buf, size_t size);
 
-    inert Blob*
+    public inert Blob*
     init_wrap(Blob *self, const char *buf, size_t size);
 
     /** Lexical comparison of two Blobs, with level of indirection set to

Reply via email to