Skip to content
Michael Tryby edited this page Jan 16, 2020 · 3 revisions

Dependency Limited and Conflict Free C++[1]:

  1. Do not use dependencies that have dependencies that need to be built.
  2. Do not use libraries depended on by dependencies anywhere else.
  3. Solve your own problems and understand the solutions. No copy/paste programming.
  4. Always write your own code where performance and maintenance is critical.

[1]: H. Lipschitz, https://hiltmon.com/blog/2016/03/25/dependency-limited-and-conflict-free-c-plus-plus/
Accessed: 1/16/2020

Clone this wiki locally