Skip to content

Commit

Permalink
[cppcheck] suppress incorrect unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Oct 9, 2023
1 parent cc2ae45 commit 006ce6d
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,6 @@ jobs:
cmake -S 'eigen' -B 'eigen/build'
cmake --build 'eigen/build' --parallel 4
sudo cmake --install 'eigen/build' )
( cd /tmp
git clone --depth 1 'https://github.com/fmtlib/fmt'
cmake -S 'fmt' -B 'fmt/build'
cmake --build 'fmt/build' --parallel 4
sudo cmake --install 'fmt/build' )
( cd /tmp
git clone --depth 1 'https://github.com/kokkos/mdspan'
cmake -S 'mdspan' -B 'mdspan/build'
cmake --build 'mdspan/build' --parallel 4
sudo cmake --install 'mdspan/build' )
( cd /tmp
git clone --depth 1 'https://github.com/kokkos/stdblas'
cmake -S 'stdblas' -B 'stdblas/build'
cmake --build 'stdblas/build' --parallel 4
sudo cmake --install 'stdblas/build' )
( cd /tmp
git clone --depth 1 'https://github.com/danmar/cppcheck'
cmake -S 'cppcheck' -B 'cppcheck/build'
Expand All @@ -54,6 +39,7 @@ jobs:
--enable=all \
--error-exitcode=1 \
--suppress=missingIncludeSystem \
--suppress=unusedFunction:internal/format.hpp \
--verbose \
-I benchmark/include \
-I include \
Expand Down

0 comments on commit 006ce6d

Please sign in to comment.