| 46 | T* ptr_; |
| 47 | |
| 48 | void Destroy() |
| 49 | { |
| 50 | #ifdef YASSL_LIB |
| 51 | yaSSL::ysArrayDelete(ptr_); |
| 52 | #else |
| 53 | TaoCrypt::tcArrayDelete(ptr_); |
| 54 | #endif |
| 55 | } |
| 56 | public: |
| 57 | explicit auto_array(T* p = 0) : ptr_(p) {} |
| 58 |
nothing calls this directly
no test coverage detected