Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: removed completed const task

...

Code Block
enum {buff_max = 50};
  char buff[buff_max];

In all the rules' code samples that declare functions, make sure that parameters that are not changed in the function are marked const.

  • done - alexv 4/22

...

I've looked at some of the C rules and recommendations, and here are my
recommendations (smile) for copying them across to C++.

...