Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 307 Bytes

CONTRIBUTING.md

File metadata and controls

6 lines (5 loc) · 307 Bytes

Guidelines for Contributors

  • use inline for functions in header files (not static)
    • static says that each TU should provide its own function
    • inline says to supress the one-definition rule, and allows the compilers to merge definitions later.
  • use signed integer types wherever possible