Menu

#353 ctags cannot see global variable (C++)

open
nobody
None
7
2013-10-06
2013-10-06
Ilnur
No

There is no variable with name 'used' in the output file.

Input:

...
const int maxsize = 100;
std::vector<int> used (maxsize);

int main(int argc, char* argv[]){
return 0;
}

Output:

main function 10 ex.cpp int main(int argc, char* argv[]){
maxsize variable 7 ex.cpp const int maxsize = 100;

Discussion


Log in to post a comment.