Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-core-dev] CDT Open Declaration in Function

I want to open a declaration in the function, but it do nothing.
For example:
    int add(int x, int y){
        int iTemp = 0;
            ...
        printf("iTemp = %d. \n",iTemp); 
            ...
        return x + y ;
    }
In the function, we don't open the declaration when we have selected iTemp, x or y.
 
How to modify the CDT ?
 
Thanks!
Ben

Back to the top