Skip to content

Commit

Permalink
squash! squash! As suggested by geninfo error on github
Browse files Browse the repository at this point in the history
checkpoint
  • Loading branch information
John-LittleBearLabs committed Oct 11, 2024
1 parent e153676 commit 4c3ede6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 5 additions & 1 deletion cmake/CodeCoverage.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,11 @@ function(setup_target_for_coverage_lcov)
${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} -directory . -b ${BASEDIR} --zerocounters
)
# Create baseline to make sure untouched files show up in the report
set(LCOV_BASELINE_CMD ${LCOV_PATH} ${Coverage_LCOV_ARGS} --gcov-tool ${GCOV_PATH} -c --no-external -i -d . -b ${BASEDIR} -o ${Coverage_NAME}.base )
set(LCOV_BASELINE_CMD ${LCOV_PATH} ${Coverage_LCOV_ARGS}
--gcov-tool ${GCOV_PATH} -c --no-external -i -d .
--ignore-errors mismatch
-b ${BASEDIR}
-o ${Coverage_NAME}.base )
# Run tests
set(LCOV_EXEC_TESTS_CMD
${Coverage_EXECUTABLE} ${Coverage_EXECUTABLE_ARGS}
Expand Down
9 changes: 5 additions & 4 deletions library/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
Checks: 'bug*,
Checks: 'bugp*,
-bugprone-reserved-identifier,
-bugprone-standalone-empty,
mis*,
-bugprone-suspicious-semicolon,
misc*,
-misc-const-correctness,
-misc-header-include-cycle,
-misc-no-recursion,
mod*,
rea*,
mode*,
read*,
-readability-container-size-empty,
-readability-else-after-return,
-readability-named-parameter'
Expand Down

0 comments on commit 4c3ede6

Please sign in to comment.