mirror of
https://github.com/vale981/ray
synced 2025-03-04 09:31:43 -05:00
[Lint] Disable modernize-use-override
(#19368)
This lint rule cannot apply only to changed lines because currently Ray has `-Winconsistent-missing-override` as a build flag. Either all or none of member functions from a derived class can have the `override` / `final` annocation.
This commit is contained in:
parent
5cee8a1985
commit
12100015d9
1 changed files with 2 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
# -modernize-use-emplace (more subtle behavior)
|
||||
# -modernize-use-nodiscard (too much noise)
|
||||
# -modernize-use-trailing-return-type (inconsistent style)
|
||||
# -modernize-use-override (TODO(mwtian): re-enable after fixing existing derived classes)
|
||||
# -modernize-avoid-bind (incorrect conversion)
|
||||
# -modernize-loop-convert (more subtle behavior)
|
||||
# -modernize-replace-disallow-copy-and-assign-macro (inconsistent style)
|
||||
|
@ -42,6 +43,7 @@ Checks: >
|
|||
-modernize-replace-disallow-copy-and-assign-macro,
|
||||
-modernize-make-unique,
|
||||
-modernize-make-shared,
|
||||
-modernize-use-override,
|
||||
performance-*,
|
||||
readability-avoid-const-params-in-decls,
|
||||
readability-braces-around-statements,
|
||||
|
|
Loading…
Add table
Reference in a new issue