diff options
author | Chris Robinson <[email protected]> | 2023-02-28 09:09:44 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-02-28 09:09:44 -0800 |
commit | 8e5db6e50599b826a41c1fadcc0b121dff0a6f17 (patch) | |
tree | 8bb41a96e3efbde2b34e7be535d619c962aa4faa /common/alcomplex.cpp | |
parent | bb1f61ab1594a37690d388c0e918a369f7471724 (diff) |
Remove a [[likely]] that confuses some versions of GCC
Diffstat (limited to 'common/alcomplex.cpp')
-rw-r--r-- | common/alcomplex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/alcomplex.cpp b/common/alcomplex.cpp index a9e28441..6fbf13cb 100644 --- a/common/alcomplex.cpp +++ b/common/alcomplex.cpp @@ -116,7 +116,7 @@ complex_fft(const al::span<std::complex<Real>> buffer, const al::type_identity_t std::swap(buffer[idx], buffer[revidx]); } } - else for(auto &rev : gBitReverses[log2_size]) [[likely]] + else for(auto &rev : gBitReverses[log2_size]) std::swap(buffer[rev.first], buffer[rev.second]); /* Iterative form of Danielson-Lanczos lemma */ |