Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Style guide should be followed for all C++ code developed for WARG. Note that this document does not reflect the most recent changes. The proper .clang-format file can be found inside the ZP repo, or attached here:

...

Spacing

We use 4 spaces instead of tabs here.

...

Code Block
languagecpp
void hewwoThereFwend(string * fwend_name) { ... }

NOTE: Moving forward, we will prefer to use reference parameters over pointers when passing by reference. It is a more C++ style of programming.

...