In my code, I have a function:
template<typename T>
void foo (T*); // make sure that 'foo()' is passed only pointers
Now in new implementation, I am passing also a smart pointer (something like shared_ptr<>
. So I have changed the signature of the function to,
template<typename T>
void foo (T); // pointers or smart-pointers
The code shall work fine. However, is there any side effect I am missing ?
void foo(T) is pass-by-copy. T& (pass by reference) would be more efficient if sizeof(T) is non-small.