| 150 | }; |
| 151 | |
| 152 | explicit multi_array(const Allocator& alloc = Allocator()) : |
| 153 | super_type((T*)initial_base_,c_storage_order(), |
| 154 | /*index_bases=*/0, /*extents=*/0), |
| 155 | alloc_base(boost::empty_init_t(),alloc) { |
| 156 | allocate_space(); |
| 157 | } |
| 158 | |
| 159 | template <class ExtentList> |
| 160 | explicit multi_array( |
nothing calls this directly
no test coverage detected