1
vote
Returning a const reference to an object instead of a copy
Does it matter? As soon as you use a modern optimizing compiler, functions that return by value will not involve a copy unless they are semantically required to.
See …
