From 1193e1a757c198d953d376ade5b8cfda1114b9ef Mon Sep 17 00:00:00 2001 From: Vitor Sousa Date: Mon, 8 Jul 2019 17:53:41 +0200 Subject: [PATCH] csharp: fix build warning related with an unused field in an unit test Test Plan: `meson test` Reviewers: lauromoura, felipealmeida, segfaultxavi Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9240 --- src/tests/efl_mono/Inheritance.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/efl_mono/Inheritance.cs b/src/tests/efl_mono/Inheritance.cs index 74c1086e78..26f51c591b 100644 --- a/src/tests/efl_mono/Inheritance.cs +++ b/src/tests/efl_mono/Inheritance.cs @@ -54,7 +54,7 @@ class TestInheritance internal class Inherit3Child : Dummy.TestObject { - Inherit3Parent parent; + //Inherit3Parent parent; public Inherit3Child(Inherit3Parent parent) : base(parent) { // WARNING: Uncommenting the line below causes the parent-child cycle to leak.