doc: Remove build instruction for running `clang-tidy`

One of the benefits of using a compilation database, which is available
after the CMake build system generation step, is that it is not
necessary to actually build the code in order to run `clang-tidy`.
This commit is contained in:
Hennadii Stepanov 2025-06-02 13:49:19 +01:00
parent 9e105107bf
commit 4b1b36acb4
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F
1 changed files with 0 additions and 1 deletions

View File

@ -221,7 +221,6 @@ Configure with clang as the compiler:
```sh
cmake -B build -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
cmake --build build -j $(nproc)
```
The output is denoised of errors from external dependencies.