Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In C language mode the code tree cannot display the function name which return a function point #5507

Closed
jack6th opened this issue May 6, 2024 · 1 comment
Labels

Comments

@jack6th
Copy link

jack6th commented May 6, 2024

CudaText 1.214.2.0 win32

int add(int a, int b) {return a+b;}

int (*get_add(void))(int, int) {return add;}

Code tree only display add, it cannot display get_add.

@Alexey-T
Copy link
Owner

Alexey-T commented May 7, 2024

Sorry, but get_add doesn't match the usual func signature: it has redundant brackets around the name... code-tree parser don't expect it.
I don't plan to fix it yet.

@Alexey-T Alexey-T added the lexer label May 7, 2024
@Alexey-T Alexey-T closed this as not planned Won't fix, can't repro, duplicate, stale May 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants