| Index: Source/modules/webaudio/AudioNode.cpp
|
| diff --git a/Source/modules/webaudio/AudioNode.cpp b/Source/modules/webaudio/AudioNode.cpp
|
| index 6733a0df59ec9fa6952b5a9ddf756c5e3784fccc..741293e1185a67be2da8883b07d4809eb9710c0a 100644
|
| --- a/Source/modules/webaudio/AudioNode.cpp
|
| +++ b/Source/modules/webaudio/AudioNode.cpp
|
| @@ -183,14 +183,14 @@ AudioNodeInput* AudioNode::input(unsigned i)
|
| {
|
| if (i < m_inputs.size())
|
| return m_inputs[i].get();
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| AudioNodeOutput* AudioNode::output(unsigned i)
|
| {
|
| if (i < m_outputs.size())
|
| return m_outputs[i].get();
|
| - return 0;
|
| + return nullptr;
|
| }
|
|
|
| void AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState)
|
|
|