Disable readability-make-member-function-const

It produces warnings in cases where we explicitly do *not* want to mark
a function as const even though it can be, because it is not
*logically* const.

This is something no automated tool will be able to detect so disable
the check to avoid spurious warnings.
This commit is contained in:
Léo Lam 2022-12-09 13:29:34 +01:00
parent 8dbd0d7839
commit 5a793566f3
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 1 additions and 0 deletions

View File

@ -38,4 +38,5 @@ readability-*,
-readability-uppercase-literal-suffix,
-readability-function-cognitive-complexity,
-readability-implicit-bool-conversion,
-readability-make-member-function-const,
-readability-convert-member-functions-to-static'