condition out

condition out

To prevent a section of code from being compiled bysurrounding it with a conditional compilation directivewhose condition is always false. The canonical examples ofthese directives are "#if 0" (or "#ifdef notdef", though somefind the latter bletcherous) and "#endif" in C. Comparecomment out.