コード例 #1
0
 __host__ __device__
 ~unique_ptr()
 {
   if(this->get())
   {
     get_deleter()(this->get());
   }
 }
コード例 #2
0
ファイル: pr56029.C プロジェクト: MaxKellermann/gcc
 scoped_ptr_impl (scoped_ptr_impl <U, V> *other):data_ (other->release (), get_deleter ()) {}