This is an archive of the discontinued LLVM Phabricator instance.

[clang-tidy] Added pointer types to clang-tidy readability-identifier-naming check.
ClosedPublic

Authored by ffigueras on Oct 4 2018, 5:20 AM.

Details

Summary

Option to check for different naming conventions on the following types:

  • GlobalConstantPointer
  • GlobalPointer
  • LocalConstantPointer
  • LocalPointer
  • PointerParameter
  • ConstantPointerParameter

When not specified, the conventions for the non pointer types will be applied (GlobalConstant, GlobalVariable, LocalConstant, ...).

Diff Detail

Event Timeline

ffigueras created this revision.Oct 4 2018, 5:20 AM
This revision is now accepted and ready to land.Oct 4 2018, 7:55 AM

Thanks @alexfh!

Could you please commit it for me?

Committed on your behalf

This revision was automatically updated to reflect the committed changes.