vitorsousa pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=103ba3668ec819d9aabfb3cb4e8190c142e60a84
commit 103ba3668ec819d9aabfb3cb4e8190c142e60a84 Author: Lauro Moura <[email protected]> Date: Thu Oct 4 14:23:20 2018 -0300 csharp: Fix missing override keyword Reviewers: vitor.sousa Reviewed By: vitor.sousa Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7136 --- src/bindings/mono/eina_mono/eina_value.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/mono/eina_mono/eina_value.cs b/src/bindings/mono/eina_mono/eina_value.cs index d1f3423abf..3712f1fc51 100644 --- a/src/bindings/mono/eina_mono/eina_value.cs +++ b/src/bindings/mono/eina_mono/eina_value.cs @@ -399,7 +399,7 @@ public struct Value_Native public IntPtr Type; public IntPtr Value; // Atually an Eina_Value_Union, but it is padded to 8 bytes. - public string ToString() + public override string ToString() { return $"Value_Native<Type:0x{Type.ToInt64():x}, Value:0x{Value.ToInt64():x}>"; } --
