I have read numerous times that enforcing const-correctness in your C or C++ code is not a good practice with regards to maintainability, but also it may allow your compiler to perform optimizations. However, I have read the complete opposite, too — that it does not affect performance at all.
Therefore, do you have examples where const correctness may aid your compiler with improving your program's performance?
constmade a performance difference: stackoverflow.com/questions/1121791/…. It was essentially a quality-of-implementation issue, though.constdidn't determine whether the compiler could legally make the optimisation, it just happened that version of the compiler failed to make it when it was missing. – Steve Jessop Aug 8 '10 at 16:34