| Index: Source/platform/audio/AudioArray.h
|
| diff --git a/Source/platform/audio/AudioArray.h b/Source/platform/audio/AudioArray.h
|
| index 64f607ba89fd351bcce154e99e8eadc9ade2beb0..ebace92789105581298a601c8ea8c29a4c74c084 100644
|
| --- a/Source/platform/audio/AudioArray.h
|
| +++ b/Source/platform/audio/AudioArray.h
|
| @@ -38,8 +38,8 @@ namespace blink {
|
| template<typename T>
|
| class AudioArray {
|
| public:
|
| - AudioArray() : m_allocation(0), m_alignedData(0), m_size(0) { }
|
| - explicit AudioArray(size_t n) : m_allocation(0), m_alignedData(0), m_size(0)
|
| + AudioArray() : m_allocation(nullptr), m_alignedData(nullptr), m_size(0) { }
|
| + explicit AudioArray(size_t n) : m_allocation(nullptr), m_alignedData(nullptr), m_size(0)
|
| {
|
| allocate(n);
|
| }
|
|
|