wdsp: Remove redundant code that causes stack overflow on Mac. For #2324.

pull/2410/head
Jon Beniston 2025-02-27 13:20:44 +00:00
rodzic ba673bf3a2
commit c40da37faf
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -444,6 +444,7 @@ EMNR::G::G(
std::copy(Calculus::GG.begin(), Calculus::GG.end(), GG.begin());
std::copy(Calculus::GGS.begin(), Calculus::GGS.end(), GGS.begin());
/* Removed as redundant and causes a stack overflow on Mac - see #2324
// We keep this pretty useless part just in case...
if ((fileb = fopen("calculus", "rb")))
{
@ -462,7 +463,7 @@ EMNR::G::G(
std::copy(ggs.begin(), ggs.end(), GGS.begin());
}
fclose(fileb);
}
}*/
}
void EMNR::G::calc_gamma0()