diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-10-30 20:39:36 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-11-03 14:07:23 -0500 |
commit | 0f780e26d6545338b6c4a1b34405822a9a6ec706 (patch) | |
tree | 3f564b4960a5fba472937b6ffbcc1e4373f21ff9 | |
parent | 0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (diff) |
add modernize-use-override to clang-tidy checks
-rw-r--r-- | .clang-tidy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy index 0b7fa8ed53..8f8afb618d 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,5 +1,5 @@ --- -Checks: '-*,misc-throw-by-value-catch-by-reference,misc-static-assert,readability-container-size-empty' +Checks: '-*,misc-throw-by-value-catch-by-reference,misc-static-assert,readability-container-size-empty,modernize-use-override' # Not in here: modernize-use-emplace, since that basically broke all things it touched WarningsAsErrors: '' HeaderFilterRegex: '\.(cc|c|cpp|h|hpp)$' |