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
This commit is contained in:
Lauro Moura 2018-10-04 14:23:20 -03:00 committed by Vitor Sousa
parent 4c576e24c7
commit 103ba3668e
1 changed files with 1 additions and 1 deletions

View File

@ -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}>";
}