Default constructor (required for some compilers)
| 18 | public: |
| 19 | // Default constructor (required for some compilers) |
| 20 | initializer_list() : data_(nullptr), size_(0) {} |
| 21 | |
| 22 | // Constructor from array (used internally by the compiler) |
| 23 | initializer_list(const T* data, size_type size) : data_(data), size_(size) {} |
nothing calls this directly
no outgoing calls
no test coverage detected