BLI: initialize MutableSpan in default constructor

This commit is contained in:
Jacques Lucke 2021-09-22 19:44:58 +02:00
parent bd1c4a781f
commit 188de4bc31
1 changed files with 2 additions and 2 deletions

View File

@ -478,8 +478,8 @@ template<typename T> class MutableSpan {
using size_type = int64_t;
protected:
T *data_;
int64_t size_;
T *data_ = nullptr;
int64_t size_ = 0;
public:
constexpr MutableSpan() = default;