commit 3850c60141a215bf6b494a921959fa1f1d691e41
parent 433538fae86cce6dcb0f98b9fd438c574f8e1a0c
Author: Johannes Lorenz <j.git@lorenz-ho.me>
Date: Sat, 19 Oct 2019 08:29:01 +0200
Delete SYNTH_T copy assign op
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/globals.h b/src/globals.h
@@ -301,6 +301,8 @@ struct SYNTH_T {
SYNTH_T(const SYNTH_T& ) = delete;
SYNTH_T(SYNTH_T&& ) = default;
+ SYNTH_T& operator=(const SYNTH_T& ) = delete;
+ SYNTH_T& operator=(SYNTH_T&& ) = default;
/** the buffer to add noise in order to avoid denormalisation */
m_unique_ptr<float> denormalkillbuf;