Hacker News new | ask | show | jobs
by UncleMeat 2312 days ago
But that’s true for literally everything. If you have a cpp code base and are building new stuff in rust to interop then you still have legacy cpp code even though rust has fewer problems.
1 comments

Not really. Legacy stuff can be contained. For example, you could specify language version level in file and it would disable removed/deprecated stuff.
Linters can prevent you from using outdated C++ constructs with ease.