6 ms·
Regarding the delete feature, can one not just raise in C++ for a deprecated/deleted function?
by SuaveSteve 2y ago
Regarding the delete feature, can one not just raise in C++ for a deprecated/deleted function?
- Negitivefrags 2y agoThe concept of doing something at runtime that could be done at compile time is anathema for c++ programmers.
- bluGill 2y agoYou could but why when we already know at build time that the function is deleted or deprecated and better yet know exactly where. runtime errors when in a rare path are often never tested until a customer hits that rare case. this is on of the reasons I won't use python for a larga project, eventually you will have critical errors in production because not only didn't you test the code but you didn't even get the minimun proof that it works that a compiler provides.
- chucksmash 2y ago> not only didn't you test the code That's why I won't use C++ programmers in a large project