Search Results

2
votes

C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?

I always enable all warnings, and then set my project to stop building if there are any warnings. If there are warnings, then you need to check each one to ensure that there is no problem. …