diff options
author | David Robillard <d@drobilla.net> | 2021-01-02 14:48:18 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-02 14:48:18 +0100 |
commit | 7dcc8ae2ea9f089cb410cb6dec39f3117427a1d4 (patch) | |
tree | 0275f6884ec7ca1ade28ce4a7bf5c3c7b4252cbd /test | |
parent | 96f997778b53ca9770b7f6f067453527f8e34185 (diff) | |
download | raul-7dcc8ae2ea9f089cb410cb6dec39f3117427a1d4.tar.gz raul-7dcc8ae2ea9f089cb410cb6dec39f3117427a1d4.tar.bz2 raul-7dcc8ae2ea9f089cb410cb6dec39f3117427a1d4.zip |
Suppress warnings about redundant "override"
Diffstat (limited to 'test')
-rw-r--r-- | test/.clang-tidy | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index d22cba7..1ee750a 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -26,6 +26,12 @@ Checks: > -modernize-use-trailing-return-type, -readability-implicit-bool-conversion, -readability-use-anyofallof, +CheckOptions: + - key: modernize-use-override.AllowOverrideAndFinal + value: 'true' +CheckOptions: + - key: cppcoreguidelines-explicit-virtual-functions.AllowOverrideAndFinal + value: 'true' HeaderFilterRegex: '.*' FormatStyle: file |