Do you know any specific case(s) where code duplication makes more sense and does not harm at all?

link|improve this question

68% accept rate
You should ask this over at programmers.stackexchange.com – Ocaso Protal May 4 '11 at 13:05
In generated code; the source contains the information once, but in the generated code you are likely to see the same patterns many times. Removing duplication may not be worth the effort or add unwanted complexity. – Peter Lawrey May 4 '11 at 13:24
feedback

closed as not constructive by Oded, Daniel Hilgarth, a'b'c'd'e'f'g'h', Vladimir Ivanov, musiKk May 4 '11 at 13:07

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

If you have a bad compiler, then for loop unrolling.

link|improve this answer
feedback

Yes, I am currently developping a C++ application in which I cannot use inheritance for architecture reasons (virtual method calls are not supported).

So I have to duplicate class members indeed, while methods are mostly wrappers over a common C function.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.