Commit c0e66c4
committed
Multiple parameters with underscores and one
When having a function like:
```
/// the text
/// \param __a__, __b__ b_fie
void b_fie(int __a__, int __b__);
```
we get warnings like:
```
.../bb.h:3: warning: argument 'strong' of command @param is not found in the argument list of b_fie(int __a__, int __b__)
.../bb.h:3: warning: argument 'b' of command @param is not found in the argument list of b_fie(int __a__, int __b__)
.../bb.h:3: warning: argument 'strong' of command @param is not found in the argument list of b_fie(int __a__, int __b__)
.../bb.h:3: warning: The following parameter of b_fie(int __a__, int __b__) is not documented:
parameter '__b__'
```
Actually this is a follow up on #6128 (Usage of underscore's in parameter names (Origin: bugzilla 775493))\param command1 parent 8342610 commit c0e66c4
1 file changed
+29
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
458 | 458 | | |
459 | 459 | | |
460 | 460 | | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
461 | 488 | | |
462 | 489 | | |
463 | 490 | | |
| |||
493 | 520 | | |
494 | 521 | | |
495 | 522 | | |
496 | | - | |
| 523 | + | |
497 | 524 | | |
498 | 525 | | |
499 | 526 | | |
| |||
604 | 631 | | |
605 | 632 | | |
606 | 633 | | |
607 | | - | |
| 634 | + | |
608 | 635 | | |
609 | 636 | | |
610 | 637 | | |
| |||
0 commit comments