Commenting general

Commenting out section of code Commenting out code and avoiding error: “/*” within comment [-Werror=comment] This is one of those annoying compiler warnings that will be treated as an error if -Werror is set. Bewst solution is to not use /* */ to comment out sections of code and comments, and instead use #if 0 […]

Read More