summaryrefslogtreecommitdiff
path: root/math/transforms/fftMul.cpp
diff options
context:
space:
mode:
authorMZuenni <michi.zuendorf@gmail.com>2023-03-01 11:36:26 +0100
committerMZuenni <michi.zuendorf@gmail.com>2023-03-01 11:36:26 +0100
commit12afe719ce268bb10aa93a910079a44eb08999b8 (patch)
tree0937a117287eebe3942e0506d27143eff4980d09 /math/transforms/fftMul.cpp
parentad8456f7c5d44d3c647b3a368050a5d2f39ae3c3 (diff)
removed trailing whitespaces and use more structured bindings
Diffstat (limited to 'math/transforms/fftMul.cpp')
-rw-r--r--math/transforms/fftMul.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/transforms/fftMul.cpp b/math/transforms/fftMul.cpp
index c8de19a..a1205f6 100644
--- a/math/transforms/fftMul.cpp
+++ b/math/transforms/fftMul.cpp
@@ -11,4 +11,4 @@ vector<cplx> mul(vector<cplx>& a, vector<cplx>& b) {
d[i] = x * y;
}
return fft(d, true);
-}
+}