Make Float and Integer 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/85c3eaff
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/85c3eaff
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/85c3eaff

Branch: refs/heads/master
Commit: 85c3eaff1610dad55fe28714d0689fecb5c0b7b9
Parents: 196237b
Author: Nick Wellnhofer <[email protected]>
Authored: Thu Jul 9 17:49:09 2015 +0200
Committer: Nick Wellnhofer <[email protected]>
Committed: Thu Jul 9 17:49:09 2015 +0200

----------------------------------------------------------------------
 runtime/core/Clownfish/Num.cfh | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/85c3eaff/runtime/core/Clownfish/Num.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Num.cfh b/runtime/core/Clownfish/Num.cfh
index d4854f2..6f127eb 100644
--- a/runtime/core/Clownfish/Num.cfh
+++ b/runtime/core/Clownfish/Num.cfh
@@ -18,23 +18,23 @@ parcel Clownfish;
 
 /** Immutable double precision floating point number.
  */
-final class Clownfish::Float {
+public final class Clownfish::Float {
 
     double value;
 
     /**
      * @param value Initial value.
      */
-    inert Float*
+    public inert Float*
     init(Float* self, double value);
 
-    inert Float*
+    public inert Float*
     new(double value);
 
     void*
     To_Host(Float *self);
 
-    double
+    public double
     Get_Value(Float *self);
 
     public int64_t
@@ -62,23 +62,23 @@ final class Clownfish::Float {
 /**
  * Immutable 64-bit signed integer.
  */
-final class Clownfish::Integer nickname Int {
+public final class Clownfish::Integer nickname Int {
 
     int64_t value;
 
     /**
      * @param value Initial value.
      */
-    inert Integer*
+    public inert Integer*
     init(Integer* self, int64_t value);
 
-    inert Integer*
+    public inert Integer*
     new(int64_t value);
 
     void*
     To_Host(Integer *self);
 
-    int64_t
+    public int64_t
     Get_Value(Integer *self);
 
     public double

Reply via email to