You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2014/07/19 01:41:53 UTC

[2/3] git commit: Change var name to `klass` for C++ compat.

Change var name to `klass` for C++ compat.


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

Branch: refs/heads/windows_fixes_for_0.4
Commit: a5eb6bfc87e332389f991e7e31652280126f8771
Parents: a94943d
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Sat Jul 19 00:20:26 2014 +0100
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Sat Jul 19 00:20:26 2014 +0100

----------------------------------------------------------------------
 runtime/core/Clownfish/Obj.cfh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/a5eb6bfc/runtime/core/Clownfish/Obj.cfh
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/Obj.cfh b/runtime/core/Clownfish/Obj.cfh
index 669accf..91e981d 100644
--- a/runtime/core/Clownfish/Obj.cfh
+++ b/runtime/core/Clownfish/Obj.cfh
@@ -156,9 +156,9 @@ public class Clownfish::Obj {
 
 __C__
 static CFISH_INLINE void
-cfish_Obj_super_destroy(cfish_Obj *self, cfish_Class *class) {
+cfish_Obj_super_destroy(cfish_Obj *self, cfish_Class *klass) {
     CFISH_Obj_Destroy_t super_destroy
-        = CFISH_SUPER_METHOD_PTR(class, CFISH_Obj_Destroy);
+        = CFISH_SUPER_METHOD_PTR(klass, CFISH_Obj_Destroy);
     super_destroy(self);
 }