فهرست منبع

Prevent clang-tidy from changing classof (#719)

Jon Meow 4 سال پیش
والد
کامیت
18e3969ded
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  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$',
+    }