MetanoKid / cpp-build-analyzer

Analyzes MSVC C++ compilations with C++ Build Insights SDK
GNU General Public License v3.0
80 stars 2 forks source link

Unifies struct's member naming convention and initialization #29

Closed MetanoKid closed 4 years ago

MetanoKid commented 4 years ago

Decides the following convention:

Members use UpperCamelCase and get initialized in the definitions. They don't define a constructor (so they can't be used within an emplace method), probably want to consider this for future revisions.

Resolves #27.