Y
Hacker News
new
|
ask
|
show
|
jobs
by
shasta
5522 days ago
How do you figure? There isn't an implicit conversion from auto_ptr<T> to T *.
1 comments
obiterdictum
5522 days ago
There isn't. There are two explicit methods to get raw pointer value with different semantics:
- get(): auto_ptr retains the ownership
- release(): auto_ptr loses the ownership
link
- get(): auto_ptr retains the ownership
- release(): auto_ptr loses the ownership