csharp: fix some compilation warnings

Fix unused variable warnings in eina_mono and unit test files.
This commit is contained in:
Vitor Sousa 2019-06-28 10:58:24 -03:00
parent 4496022a3c
commit 229b363f01
2 changed files with 2 additions and 2 deletions

View File

@ -732,7 +732,7 @@ static class ValueTypeBridge
{
return NativeToManaged[native];
}
catch (KeyNotFoundException ex)
catch (KeyNotFoundException)
{
var name_ptr = eina_value_type_name_get(native);
var name = Marshal.PtrToStringAnsi(name_ptr);

View File

@ -69,7 +69,7 @@ _dummy_constructible_object_internal_object_get(const Eo *obj EINA_UNUSED, Dummy
EOLIAN static int
_dummy_constructible_object_multiply_integer_value(const Eo *obj EINA_UNUSED, Dummy_Constructible_Object_Data *pd, int v)
_dummy_constructible_object_multiply_integer_value(const Eo *obj EINA_UNUSED, Dummy_Constructible_Object_Data *pd EINA_UNUSED, int v)
{
return 2 * v;
}