Files
tubestation/dom/media/webaudio/AudioNodeEngineSSE2.cpp
serge-sans-paille 088c989b44 Bug 1822901 - Forward declare arch-specific xsimd specialization r=padenot
Otherwise the compiler tries to instantiate the generic version based on
its current architecture flags, which may not be enough, resulting in
error along those lines:

        'xsimd::batch<float, xsimd::neon> vgainr' has incomplete type

Differential Revision: https://phabricator.services.mozilla.com/D172864
2023-03-20 13:07:38 +00:00

11 lines
408 B
C++

/* -*- mode: c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* this source code form is subject to the terms of the mozilla public
* license, v. 2.0. if a copy of the mpl was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "AudioNodeEngineGenericImpl.h"
namespace mozilla {
template struct Engine<xsimd::sse2>;
} // namespace mozilla