mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Meta: Enable the "bugprone-dangling-handle" clang-tidy check
This should catch (the trivial cases of) construction of StringViews from temporary Strings and the construction of Spans from temporary Vectors.
This commit is contained in:
parent
197759e30f
commit
4dbda2d5b4
Notes:
sideshowbarker
2024-07-17 23:00:20 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/4dbda2d5b45 Pull-request: https://github.com/SerenityOS/serenity/pull/11203
1 changed files with 2 additions and 0 deletions
|
@ -41,6 +41,8 @@ WarningsAsErrors: ''
|
|||
HeaderFilterRegex: 'AK|Userland|Kernel|Tests'
|
||||
FormatStyle: none
|
||||
CheckOptions:
|
||||
- key: bugprone-dangling-handle.HandleClasses
|
||||
value: 'AK::StringView;AK::Span'
|
||||
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
|
||||
value: true
|
||||
- key: readability-implicit-bool-conversion.AllowPointerConditions
|
||||
|
|
Loading…
Reference in a new issue