yulvil

Results 7 comments of yulvil

@elliotchance I am affraid I do not have many ideas on how to implement this for now. Travis writing the number of warnings to a file? I would not go...

Depends on #157 Support function pointers

C ``` int (*f)(int, int); int add(int a, int b) { return a + b; } int mul(int a, int b) { return a * b; } int main() {...

I have the C example above working by hard-coding "int (int, int)" in a few places, hard-coding the Go AST... I now need to make it work with other return...

@elliotchance The Go file was generated by c2go. I only implemented the `int (*) (int, int)` function pointer. I need to make it work with other arg/return types. Work in...

I am hoping to finish implementing this over the weekend.

@elliotchance @Konstantin8105 I do no think that the functionality is complete. We should reopen this issue. - Remove the "function pointers are not supported" warnings https://github.com/elliotchance/c2go/blob/master/types/resolve.go#L226,L231 - Add tests where...