Skip to content

Commit

Permalink
Rename identifiers
Browse files Browse the repository at this point in the history
There are no functional changes in this commit.

Signed-off-by: Sean Robinson <[email protected]>
  • Loading branch information
skrobinson committed Feb 10, 2022
1 parent 985ea86 commit ce3c43e
Show file tree
Hide file tree
Showing 2 changed files with 241 additions and 241 deletions.
7 changes: 4 additions & 3 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ CheckOptions:
- { key: readability-identifier-naming.ConstexprVariableCase, value: lower_case }
- { key: readability-identifier-naming.ConstexprVariableIgnoredRegexp, value: "^Is.+" }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.LocalVariableIgnoredRegexp, value: "^[a-z][a-z_]+" }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ }
- { key: readability-identifier-naming.StructCase, value: CamelCase }
- { key: readability-identifier-naming.StructIgnoredRegexp, value: "parse_number" }
- { key: readability-identifier-naming.VariableCase, value: camelBack }
- { key: readability-identifier-naming.VariableCase, value: lower_case }

HeaderFilterRegex: '.*'
Loading

0 comments on commit ce3c43e

Please sign in to comment.