From 453aa554e67d6a0c0ad74a16f5f877dec5a5c219 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 20 Oct 2012 20:34:14 +0100 Subject: Disallow AudioBuffer copy construction. --- src/lib/util.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib') diff --git a/src/lib/util.h b/src/lib/util.h index c98049f62..a6d95b85d 100644 --- a/src/lib/util.h +++ b/src/lib/util.h @@ -222,6 +222,9 @@ public: void set_frames (int f); private: + /* no copy construction */ + AudioBuffers (AudioBuffers const &); + int _channels; int _frames; float** _data; -- cgit v1.2.3