Creates an empty vector in \p context.
| 119 | |
| 120 | /// Creates an empty vector in \p context. |
| 121 | explicit vector(const context &context = system::default_context()) |
| 122 | : m_size(0), |
| 123 | m_allocator(context) |
| 124 | { |
| 125 | m_data = m_allocator.allocate(_minimum_capacity()); |
| 126 | } |
| 127 | |
| 128 | /// Creates a vector with space for \p count elements in \p context. |
| 129 | /// |
nothing calls this directly
no test coverage detected