| 185 | {return ptr+size;} |
| 186 | |
| 187 | void CopyFrom(const SecBlock<T> &t) |
| 188 | { |
| 189 | New(t.size); |
| 190 | memcpy(ptr, t.ptr, size*sizeof(T)); |
| 191 | } |
| 192 | |
| 193 | SecBlock& operator=(const SecBlock<T> &t) |
| 194 | { |
nothing calls this directly
no outgoing calls
no test coverage detected