Repository: lucy-clownfish Updated Branches: refs/heads/master aeabd17af -> 6f2a0a193
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/9b1c2266 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/9b1c2266 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/9b1c2266 Branch: refs/heads/master Commit: 9b1c2266916afdd45ade690049d3f634d3c3655d Parents: 61dd4b8 Author: Marvin Humphrey <[email protected]> Authored: Sat Jul 19 00:20:26 2014 +0100 Committer: Marvin Humphrey <[email protected]> Committed: Sun Jul 20 19:54:03 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/9b1c2266/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); }
