--------------------------- default c'tor - do nothing! */
| 212 | |
| 213 | /*--------------------------- default c'tor - do nothing! */ |
| 214 | __inline_call array ( |
| 215 | allocator const&_asrc = allocator() |
| 216 | ) : obj_alloc( _asrc ) |
| 217 | { |
| 218 | this->_ptrs[_hptr] = nullptr; |
| 219 | this->_ptrs[_tptr] = nullptr; |
| 220 | this->_ptrs[_lptr] = nullptr; |
| 221 | } |
| 222 | |
| 223 | /*--------------------------- default c'tor - initialisor */ |
| 224 | __inline_call array ( |
nothing calls this directly
no test coverage detected