|
|
|
|
|
by dataflow
268 days ago
|
|
> If you don't do C++ on a daily basis, you will silently introduce problems Even if you do, you still will. Just less often. > I actually have no idea how big teams work on large C++ codebases... You can change one part of the code, and it will introduce bugs in the whole project because of how the memory is handled Part of it is lots of tests, sanitizers, assertions, etc. Part of it is keeping things modular and avoiding spooky action at a distance to the extent possible. Part of it is unavoidable, and that's why people are moving to safer languages. |
|