diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2023-12-29 08:16:26 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2023-12-29 08:16:26 -0800 |
commit | a6942c271f1b27c79e274bdc87aa370b3bb81cc2 (patch) | |
tree | eca41191a96f626768c07293efdb5ab195d93cb9 /common/pffft.cpp | |
parent | 10ecdff7d1dfcc16bd2a090f089781310ea9a93d (diff) |
Clean up some potential allocation alignment mismatches
Diffstat (limited to 'common/pffft.cpp')
-rw-r--r-- | common/pffft.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/pffft.cpp b/common/pffft.cpp index bbfbaa49..38380261 100644 --- a/common/pffft.cpp +++ b/common/pffft.cpp @@ -1438,7 +1438,7 @@ gsl::owner<PFFFT_Setup*> pffft_new_setup(unsigned int N, pffft_transform_t trans const size_t storelen{std::max(offsetof(PFFFT_Setup, end) + 2_zu*Ncvec*sizeof(v4sf), sizeof(PFFFT_Setup))}; - gsl::owner<std::byte*> storage{::new(V4sfAlignVal) std::byte[storelen]{}}; + auto storage = static_cast<gsl::owner<std::byte*>>(::operator new[](storelen, V4sfAlignVal)); al::span extrastore{&storage[offsetof(PFFFT_Setup, end)], 2_zu*Ncvec*sizeof(v4sf)}; gsl::owner<PFFFT_Setup*> s{::new(storage) PFFFT_Setup{}}; @@ -1489,8 +1489,7 @@ gsl::owner<PFFFT_Setup*> pffft_new_setup(unsigned int N, pffft_transform_t trans void pffft_destroy_setup(gsl::owner<PFFFT_Setup*> s) noexcept { std::destroy_at(s); - auto storage = reinterpret_cast<gsl::owner<std::byte*>>(s); - ::operator delete[](storage, V4sfAlignVal); + ::operator delete[](gsl::owner<void*>{s}, V4sfAlignVal); } #if !defined(PFFFT_SIMD_DISABLE) |