|
|
|
|
|
by hyperman1
1552 days ago
|
|
One problem with new C++ is mainly that old C++ comes along for the ride. New C++ indeed is a lot better, but the chance that your codebase was created recently is quite low. You will have to deal with al the old C++ in there. The conflict between new and old C++ will cause some lavaflow architecture as a bonus. Even if you've got a greenfield C++ project, you're not going it alone. If you're a team of 10, it's almost guaranteed at least 1 of them will be programming like it's 1999 with no intention to change. Code samples by your vendor will not be up to date. A quick google will deliver a working answer from the good old days. It's like hydra. Every time you axe a block of old code, 5 new ones have sprouted up. |
|