cpp-best-practices/cppbestpractices

Style casing inconsistency

Adobe-Android opened this issue · 1 comments

The section below was taken directly from the document. Did you mean camelCase or PascalCase? I assumed camelCase. I'll be happy to open a pull request with this correction.

Style

Consistency is the most important aspect of style. The second most important aspect is following a style that the average C++ programmer is used to reading.

C++ allows for arbitrary-length identifier names, so there's no reason to be terse when naming things. Use descriptive names, and be consistent in the style.

  • CamelCase
  • camelCase
  • snake_case