Skip to content

Coding conventions

Kyle Knoepfel edited this page May 9, 2023 · 1 revision
  • Right const is used throughout the code base (e.g. int const over const int).
  • Names of variables, functions, classes, files, and CMake targets adhere to the snake case convention, where meaningful words within the same name use lower case letters separated by an underscore (_).

Clone this wiki locally