cppcheck/man
Johan Bertrand 44ab976451
Inline suppression for block of code or whole file (#5402)
Added new suppress comments:
- `cppcheck-suppress-begin` and `cppcheck-suppress-end` to remove blocks
of suppression
- `cppcheck-suppress-file` to remove suppression at file level

The suppressions do not interfere with each others. For example, all the
suppressions are matched in the following code:

```c
// cppcheck-suppress-file uninitvar
void f() {
    int a;
    // cppcheck-suppress-begin uninitvar
    // cppcheck-suppress uninitvar
    a++;
    // cppcheck-suppress-end uninitvar
}
```

Tickets:
https://trac.cppcheck.net/ticket/11902
https://trac.cppcheck.net/ticket/8528
2023-10-13 12:45:13 +02:00
..
images Manual: Added a getting started chapter for the GUI 2017-08-12 23:09:13 +02:00
CMakeLists.txt fixed #7099 - added optional `man` target to CMake / build manpage in CI (#5536) 2023-10-09 22:20:36 +02:00
build-html.sh GUI: Try to reuse Qt Assistant to show help 2020-08-01 18:56:37 +02:00
build-pdf.sh fixed/excluded some shellcheck warnings and actually fail the build when something is found (#3068) 2021-01-20 18:43:49 +01:00
buildman.sh Create separate scripts for building HTML and PDF documents 2020-07-24 18:54:06 +01:00
cppcheck-design.docbook Fix some typos (#1983) 2019-07-12 17:55:44 +02:00
cppcheck.1.xml refs #4452 / refs #11705 - improved `--showtime=` behavior and testing (#4876) 2023-10-05 19:04:06 +02:00
manual-ja.docbook de-coupled `--check-library` from `information` severity and other dependencies (#3861) 2023-01-26 22:28:04 +01:00
manual-premium.md manual: Add manual-premium.md for the Cppcheck Premium manual (#5492) 2023-09-28 13:30:58 +02:00
manual-style.tex Add styling to PDF manual 2020-07-23 15:39:23 +01:00
manual.css added .gitattributes and normalized files (#4668) 2022-12-30 21:33:45 +01:00
manual.md Inline suppression for block of code or whole file (#5402) 2023-10-13 12:45:13 +02:00
reference-cfg-format.md 2.12.99: Set versions (#5427) 2023-09-10 18:43:00 +02:00
writing-addons.md 2.12.99: Set versions (#5427) 2023-09-10 18:43:00 +02:00
writing-rules-1.docbook man: tabs to spaces, remove trailing spaces and extra empty lines at the end of files 2012-09-29 13:15:08 +02:00
writing-rules-2.docbook Manual: Add internal links 2011-07-02 16:21:58 +02:00
writing-rules-3.docbook MathLib: renamed `to{U}LongNumber()` to `toBig{U}Number()` (#5503) 2023-10-05 19:21:42 +02:00