in reply to Commented out production code?
As an example, on one fairly complex C++ project I worked on , two of the other coders not only commented away code but also had little conversations in the comments, like this...
These guys shared the same room. Wouldn't it've been better if they'd talked to each other directly? :)... for ( i = 0; i < max; i++ ) { doSomething(); // I really think this part should be removed. /Stefan doSomethingElse(); // No, it shouldn't. /Björn } ... and even further down... // This code is strange. I fear it.
Cheers,
-- moodster
|
|---|