1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-28 21:14:15 -04:00
Files
sdrangel/plugins
Robin Getz 463daf7eed demoddatv: Replace MinSumAlgorithm VLAs with std::vector
Replace the runtime-sized temporary arrays used by
MinSumAlgorithm<SIMD<...>>::finalp() with std::vector.

The array sizes are determined at runtime from the number of links,
making them variable-length arrays that rely on compiler extensions.
Using std::vector removes the dependency on VLA support while
preserving the existing algorithm and behavior.

This eliminates ~24 of remaining -Wvla warnings (for me) reported
from ldpctool/algorithms.h.

Part of #2830

Signed-off-by: Robin Getz <rgetz503@gmail.com>
2026-07-25 16:39:23 -04:00
..
2026-05-04 06:00:17 +02:00
2026-05-04 06:00:17 +02:00