aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-02-06 12:35:51 -0800
committerChris Robinson <[email protected]>2023-02-06 12:35:51 -0800
commit0de7ea42fa197833bff70b4c370ed29f9859889d (patch)
treea7c61b3238d135728abbb7fe0496581a9510efb8 /utils
parentff530e982ec7cd8eea7033ef7dd4451e81aa32e5 (diff)
Avoid using auto for lambda parameters
Diffstat (limited to 'utils')
-rw-r--r--utils/makemhr/makemhr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/makemhr/makemhr.cpp b/utils/makemhr/makemhr.cpp
index 6cf3076d..ae301dc3 100644
--- a/utils/makemhr/makemhr.cpp
+++ b/utils/makemhr/makemhr.cpp
@@ -1019,7 +1019,7 @@ static void NormalizeHrirs(HrirDataT *hData)
/* Now scale all IRs by the given factor. */
auto proc_channel = [irSize,factor](double *ir)
- { std::transform(ir, ir+irSize, ir, [factor](auto s){ return s * factor; }); };
+ { std::transform(ir, ir+irSize, ir, [factor](double s){ return s * factor; }); };
auto proc_azi = [channels,proc_channel](HrirAzT &azi)
{ std::for_each(azi.mIrs, azi.mIrs+channels, proc_channel); };
auto proc_elev = [proc_azi](HrirEvT &elev)