To remove #ifdef DEBUG parts for release or not? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:17:39Z http://stackoverflow.com/feeds/question/735944 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not 2 To remove #ifdef DEBUG parts for release or not? Liran Orevi 2009-04-09T21:10:48Z 2009-04-09T21:35:04Z <p>Hello, When releasing source code for someone else to see, when coding style is not well defined (no pun intended) do you remove the #ifdef DEBUG parts?</p> <p>(that is the parts that are compiled only when DEBUG is defined)</p> <p>If I remove it, it makes the code looks better (or me look better - do I really want someone to know I've debugged, and how I've done it? ), but then I'll lose my debug parts, or have to keep two (or more) versions of the code.</p> <p>What is to be done?</p> <p>thanks.</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/735953#735953 5 Answer by Andy White for To remove #ifdef DEBUG parts for release or not? Andy White 2009-04-09T21:13:56Z 2009-04-09T21:13:56Z <p>I think if your debug code is clean and has "professional" language in any logging statements, it's okay to leave it in. If the debug code is sloppy or has debug messages like "I'm here...," "Now I'm here..." you should take it out.</p> <p>If your debug statements reflect the fact that there are issues that you can't figure out, it might be best to take them out, if you're trying to "sell" your software to someone. (Hopefully you can fix them later...)</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/735954#735954 3 Answer by MissT for To remove #ifdef DEBUG parts for release or not? MissT 2009-04-09T21:14:24Z 2009-04-09T21:14:24Z <p>You should leave the code as is, unless you make use of non-recomadable language in your commentary. If someone is to use your code, chances are they'll need those, or it will help them understand your code. (this is also true for commentaries)</p> <p>Edit: I worked on drop of other studio code often in the past. I have seen debug code, dead path and many other stuff, still the only thing I hated, was people that strip their code of debug and commentary, this makes their code real hard to maintain</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/735965#735965 2 Answer by Jaka Jančar for To remove #ifdef DEBUG parts for release or not? Jaka Jančar 2009-04-09T21:18:49Z 2009-04-09T21:18:49Z <p>If you do decide to remove them, just filter them out with a script when exporting the code, no need to maintain two versions.</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/735967#735967 2 Answer by Slidell4life for To remove #ifdef DEBUG parts for release or not? Slidell4life 2009-04-09T21:19:59Z 2009-04-09T21:19:59Z <p>I also vote to leave it in. If/when you start work on your first patch, you'll likely need those DEBUG-blocked pieces. Also, QA won't love it that you removed the code, even if it is blocked in a directive.</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/735982#735982 2 Answer by Brian R. Bondy for To remove #ifdef DEBUG parts for release or not? Brian R. Bondy 2009-04-09T21:27:05Z 2009-04-09T21:27:05Z <p>Maintain your base version with everything in your source code management system. </p> <p>Then if you want to distribute source code filtered in one or more ways, make a script that will make a release version of your source code. </p> <p>Do not maintain these secondary filtered repositories, make them always generated. </p> <p>But is it worth the time? Probably not, and you should probably just distribute everything including the #ifdef DEBUG parts.</p> http://stackoverflow.com/questions/735944/to-remove-ifdef-debug-parts-for-release-or-not/736006#736006 0 Answer by Blank Xavier for To remove #ifdef DEBUG parts for release or not? Blank Xavier 2009-04-09T21:35:04Z 2009-04-09T21:35:04Z <p>Maintaining multiple versions of ANYTHING is undesireable.</p> <p>Only do so if you <em>must</em>.</p>