Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:auto_ptr

222   // auto_ptr-like template. In particular, we can't create multiple
224 struct auto_ptr {
227 auto_ptr(auto_ptr&);
228 auto_ptr(auto_ptr_ref);
229 explicit auto_ptr(int *);
235 X(auto_ptr);
239 X x(auto_ptr(new int));
240 return X(auto_ptr(new int));
243 auto_ptr foo();