You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Documentation

Every function and class should be documented and thoroughly commented.

Use Doxygen standards, which CLion should automatically register and autocomplete.

https://www.doxygen.nl/index.html

Bracket usage

 

When using brackets, always do

void foo(params) {
}
//NOT
void foo(params)
{
}

 


  • No labels