D-Scanner icon indicating copy to clipboard operation
D-Scanner copied to clipboard

on a same line only the first undocumented variable is indicated

Open ghost opened this issue 9 years ago • 1 comments

Minor issue. Also when a comment is finally added then the variables 1..$ are not detected at all.

e.g

int a,b ; // variable a is not ....
/// some DDOC
int a,b ; // no message for b

ghost avatar Jun 13 '16 04:06 ghost

/// some DDOC
int a, b;

results in documentation for a and b though and not just for a, so the second behavior is correct

WebFreak001 avatar Oct 08 '16 13:10 WebFreak001