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/07/11 14:52:39 UTC

[05/12] lucy-clownfish git commit: Make Boolean class "public final"

Make Boolean class "public final"


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

Branch: refs/heads/master
Commit: f9eb32218c466249f6633b9528f759b06a488054
Parents: b584f58
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Jul 9 13:28:18 2015 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Jul 9 16:34:00 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/f9eb3221/runtime/core/Clownfish/Boolean.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Boolean.cfh b/runtime/core/Clownfish/Boolean.cfh
index e2454ce..272d6d6 100644
--- a/runtime/core/Clownfish/Boolean.cfh
+++ b/runtime/core/Clownfish/Boolean.cfh
@@ -22,7 +22,7 @@ parcel Clownfish;
  * There are only two singleton instances of this class: CFISH_TRUE and
  * CFISH_FALSE.
  */
-class Clownfish::Boolean nickname Bool {
+public final class Clownfish::Boolean nickname Bool {
     bool value;
     String *string;
 
@@ -35,7 +35,7 @@ class Clownfish::Boolean nickname Bool {
     /** Return either CFISH_TRUE or CFISH_FALSE depending on the supplied
      * value.
      */
-    inert Boolean*
+    public inert Boolean*
     singleton(bool value);
 
     public void
@@ -44,7 +44,7 @@ class Clownfish::Boolean nickname Bool {
     void*
     To_Host(Boolean *self);
 
-    bool
+    public bool
     Get_Value(Boolean *self);
 
     public int64_t