Do you know any specific case(s) where code duplication makes more sense and does not harm at all?
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.
|
If you have a bad compiler, then for loop unrolling. | |||
|
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. | |||
|
feedback
|