Skip to content
Commit 81ec5b51 authored by Milian Wolff's avatar Milian Wolff
Browse files

Add basic support for typedef'ed function pointers.

Properly deduce the function type and create correct declarations
with the identifier of the sub_declaration id in cases such as:

void (*funcptr)(int x);
funcptr myFunc;
int main() {
    myFunc(0);
}

BUG: 307629
CCBUG: 286208
DIGEST:
parent b161d407
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment