Everywhere: Run clang-format

The following command was used to clang-format these files:

    clang-format-21 -i $(find . \
        -not \( -path "./\.*" -prune \) \
        -not \( -path "./Build/*" -prune \) \
        -not \( -path "./Toolchain/*" -prune \) \
        -type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
This commit is contained in:
Timothy Flynn
2026-02-17 19:50:23 -05:00
committed by Tim Flynn
parent 415625d398
commit ea32502947
Notes: github-actions[bot] 2026-02-18 13:03:44 +00:00
34 changed files with 231 additions and 84 deletions

View File

@@ -166,7 +166,8 @@ WebIDL::ExceptionOr<GC::Ref<PeriodicWave>> BaseAudioContext::create_periodic_wav
// https://webaudio.github.io/web-audio-api/#dom-baseaudiocontext-createscriptprocessor
WebIDL::ExceptionOr<GC::Ref<ScriptProcessorNode>> BaseAudioContext::create_script_processor(
WebIDL::UnsignedLong buffer_size, WebIDL::UnsignedLong number_of_input_channels,
WebIDL::UnsignedLong buffer_size,
WebIDL::UnsignedLong number_of_input_channels,
WebIDL::UnsignedLong number_of_output_channels)
{
// The bufferSize parameter determines the buffer size in units of sample-frames. If its not passed in, or if the