Explorar el Código

Adjust .clang-tidy for public struct member names

Vincent Lang hace 9 años
padre
commit
40be8ac9a2
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      .clang-tidy

+ 3 - 1
.clang-tidy

@@ -16,7 +16,9 @@ CheckOptions:
       value: g_
     - key: readability-identifier-naming.VariableCase
       value: camelBack
-    - key: readability-identifier-naming.MemberPrefix
+    - key: readability-identifier-naming.PrivateMemberPrefix
+      value: m_
+    - key: readability-identifier-naming.ProtectedMemberPrefix
       value: m_
     - key: readability-identifier-naming.MemberCase
       value: camelBack