Merge pull request #83 from FintasticMan/customisable_sqrt

Make the sqrt_internal macro customisable
pull/91/head
Enrique Condes 2023-05-26 14:55:19 -06:00 zatwierdzone przez GitHub
commit 419d7b044e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -50,7 +50,9 @@
#ifdef FFT_SQRT_APPROXIMATION
#include <type_traits>
#else
#define sqrt_internal sqrt
#ifndef sqrt_internal
#define sqrt_internal sqrt
#endif
#endif
enum class FFTDirection