aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2021-04-11 17:54:40 -0700
committerChris Robinson <chris.kcat@gmail.com>2021-04-11 17:54:40 -0700
commitfb44c467b86091e001441eab8c8493bb22a40894 (patch)
treeee04357f8fcf8f6c8ceb4bc5a74a302a36c12a68 /core
parent87682e7cb21e845c6fe7d896839f7395807caf8c (diff)
Don't reference non-static local variables in lambdas
GCC and Clang seem to allow it for local constexpr variables, but MSVC doesn't.
Diffstat (limited to 'core')
-rw-r--r--core/uhjfilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/uhjfilter.cpp b/core/uhjfilter.cpp
index 5a236d38..f1af4b94 100644
--- a/core/uhjfilter.cpp
+++ b/core/uhjfilter.cpp
@@ -44,7 +44,7 @@ void UhjEncoder::encode(const FloatBufferSpan LeftOut, const FloatBufferSpan Rig
const FloatBufferLine *InSamples, const size_t SamplesToDo)
{
/* Given FuMa input, a +3dB boost is needed for the expected levels. */
- constexpr float sqrt2{1.41421356237f};
+ static constexpr float sqrt2{1.41421356237f};
ASSUME(SamplesToDo > 0);
@@ -114,7 +114,7 @@ void UhjDecoder::decode(const al::span<BufferLine> samples, const size_t offset,
const size_t samplesToDo, const size_t forwardSamples)
{
/* A -3dB attenuation is needed for FuMa output. */
- constexpr float sqrt1_2{0.707106781187f};
+ static constexpr float sqrt1_2{0.707106781187f};
ASSUME(samplesToDo > 0);