diff options
author | Chris Robinson <[email protected]> | 2023-05-05 06:46:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-05 06:46:00 -0700 |
commit | 3ec03cadd2b5059e54e5e9b8f4d506b4c6ce727d (patch) | |
tree | 623b8e96f8acca9d55fb96b74e8d832877b27451 /utils/makemhr/loadsofa.cpp | |
parent | c14ca5f3aa6da354440a60656062f6bc68d6fca6 (diff) |
Use deduction guides instead of helper functions for spans
Diffstat (limited to 'utils/makemhr/loadsofa.cpp')
-rw-r--r-- | utils/makemhr/loadsofa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/makemhr/loadsofa.cpp b/utils/makemhr/loadsofa.cpp index 9e661839..9bcfc38d 100644 --- a/utils/makemhr/loadsofa.cpp +++ b/utils/makemhr/loadsofa.cpp @@ -87,7 +87,7 @@ static bool PrepareLayout(const uint m, const float *xyzs, HrirDataT *hData) ++fi; } fprintf(stdout, "Using %u of %u IRs.\n", ir_total, m); - const auto azs = al::as_span(azCounts).first<MAX_FD_COUNT>(); + const auto azs = al::span{azCounts}.first<MAX_FD_COUNT>(); return PrepareHrirData({distances, fi}, evCounts, azs, hData); } |