aboutsummaryrefslogtreecommitdiffstats
path: root/common/alcomplex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/alcomplex.cpp')
-rw-r--r--common/alcomplex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/alcomplex.cpp b/common/alcomplex.cpp
index 5cb35f38..6d2b18c1 100644
--- a/common/alcomplex.cpp
+++ b/common/alcomplex.cpp
@@ -10,8 +10,8 @@
#include <utility>
#include "albit.h"
+#include "alnumbers.h"
#include "alnumeric.h"
-#include "math_defs.h"
#include "opthelpers.h"
@@ -123,7 +123,7 @@ void complex_fft(const al::span<std::complex<double>> buffer, const double sign)
size_t step2{1u};
for(size_t i{0};i < log2_size;++i)
{
- const double arg{al::MathDefs<double>::Pi() / static_cast<double>(step2)};
+ const double arg{al::numbers::pi / static_cast<double>(step2)};
const std::complex<double> w{std::cos(arg), std::sin(arg)*sign};
std::complex<double> u{1.0, 0.0};