Details
Details
- Reviewers
YOhoho jptiz woohyun segfaultxavi
Diff Detail
Diff Detail
- Repository
- rEFL core/efl
- Branch
- master
- Lint
Lint OK - Unit
No Unit Test Coverage - Build Status
Buildable 16072
Comment Actions
It seems that this patch has no reviewers specified. If you are unsure who can review your patch, please check this wiki page and see if anyone can be added: https://phab.enlightenment.org/w/maintainers_reviewers/
Comment Actions
Got the following build error for efl_mono.dll:
src/bindings/mono/eina_mono/eina_value.cs(3564,86): error CS1061: Type `Efl.Object' does not contain a definition for `NativeHandle' and no extension method `NativeHandle' of type `Efl.Object' could be found. Are you missing an assembly reference? src/bindings/mono/efl_object.eo.cs(128,35): (Location of the symbol related to previous error) Compilation failed: 1 error(s), 0 warnings
The region:
3561 case ValueType.Object: 3562 { 3563 var x = (Efl.Object) o; 3564 return eina_value_container_insert_wrapper_ptr(this.Handle, p, x.NativeHandle); 3565 }
Comment Actions
Is it interesting to have NativeHandle be internal for DotNet when using C# 8.0? This can be done in C# 8 because they added access modifiers for interfaces in C# 8. But can't be done for older language revisions.