aboutsummaryrefslogtreecommitdiffstats
path: root/core/mastering.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-05-05 13:37:50 -0700
committerChris Robinson <[email protected]>2023-05-05 13:50:16 -0700
commitbfe766cd574985465fe1a9f4cffa388ca9ca1f9b (patch)
tree7752588dfa87ae2616fd84437697f4458d4d5293 /core/mastering.cpp
parent09b153b85c9f6c75a6361ab2ecb0ed81e8920ff3 (diff)
Use some more standard functions
Diffstat (limited to 'core/mastering.cpp')
-rw-r--r--core/mastering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/mastering.cpp b/core/mastering.cpp
index 97a4008e..4445719b 100644
--- a/core/mastering.cpp
+++ b/core/mastering.cpp
@@ -382,10 +382,10 @@ std::unique_ptr<Compressor> Compressor::Create(const size_t NumChans, const floa
Compressor::~Compressor()
{
if(mHold)
- al::destroy_at(mHold);
+ std::destroy_at(mHold);
mHold = nullptr;
if(mDelay)
- al::destroy_n(mDelay, mNumChans);
+ std::destroy_n(mDelay, mNumChans);
mDelay = nullptr;
}