You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: man/manual.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -478,9 +478,9 @@ The format for an error suppression is one of:
478
478
[error id]:[filename2]
479
479
[error id]
480
480
481
-
The `error id` is the id that you want to suppress. The id of a warning is shown in brackets in the normal cppcheck text output. The suppression `error id` may contain `*` and/or `?`.
481
+
The `error id` is the id that you want to suppress. The id of a warning is shown in brackets in the normal cppcheck text output.
482
482
483
-
The filename pattern may contain `**`, `*` or `?`.
483
+
The `error id` and `filename` patterns may contain `**`, `*` or `?`.
484
484
`**`: matches zero or more characters, including path separators
485
485
`*`: matches zero or more characters, excluding path separators
486
486
`?`: matches zero or one characters, excluding path separators
@@ -530,7 +530,10 @@ The usage of the suppressions file is as follows:
530
530
531
531
cppcheck --suppress-xml=suppressions.xml src/
532
532
533
-
The `id` and `fileName` patterns may `**`, `*` or `?`.
533
+
The `id` and `fileName` patterns may contain `**`, `*` or `?`.
534
+
`**`: matches zero or more characters, including path separators
535
+
`*`: matches zero or more characters, excluding path separators
536
+
`?`: matches zero or one characters, excluding path separators
0 commit comments