
3 Jan
2013
3 Jan
'13
5:27 p.m.
I have shared_ptr<int> variable. I need to pass a int* pointer to a function call. How to pass shared_ptr<int> as int *?
shared_ptr<int> p; p.get(); But make sure the function doesn't store this raw pointer, otherwise it would defeat the whole purpose of shared_ptr.