Forráskód Böngészése

Prevent clang-tidy from changing classof (#719)

Jon Meow 4 éve
szülő
commit
18e3969ded
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      .clang-tidy

+ 4 - 0
.clang-tidy

@@ -31,3 +31,7 @@ CheckOptions:
   - { key: readability-identifier-naming.VariableCase, value: lower_case }
   - { key: readability-identifier-naming.ParameterCase, value: lower_case }
   - { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
+  - {
+      key: readability-identifier-naming.MethodIgnoredRegexp,
+      value: '^classof$',
+    }