top | item 41472915

(no title)

SuaveSteve | 1 year ago

Regarding the delete feature, can one not just raise in C++ for a deprecated/deleted function?

discuss

order

Negitivefrags|1 year ago

The concept of doing something at runtime that could be done at compile time is anathema for c++ programmers.

bluGill|1 year ago

You 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|1 year ago

> not only didn't you test the code

That's why I won't use C++ programmers in a large project