cquery icon indicating copy to clipboard operation
cquery copied to clipboard

Feature request: semantic highlighting of non-const ref/pointers arguments

Open Yanpas opened this issue 7 years ago • 0 comments

It would be useful to distinguish between mutable and immutable function arguments. Currently implemented in Eclipse CDT.

E.g.:

void func(int a, int& b, const char* c, char* d);

// ...

int main(){
  func(a, b, c, d); // b and d should be italic/underlined
}

Yanpas avatar Jul 06 '18 16:07 Yanpas