| 193 | template<class T> using ownvec = vec<own<T>>; |
| 194 | |
| 195 | template<class T> own<T> make_own(T* ptr) { |
| 196 | return own<T>(ptr); |
| 197 | } |
| 198 | |
| 199 | /////////////////////////////////////////////////////////////////////////////// |
| 200 | // Runtime Environment |
nothing calls this directly
no outgoing calls
no test coverage detected