diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-20 20:34:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-20 20:34:14 +0100 |
| commit | 453aa554e67d6a0c0ad74a16f5f877dec5a5c219 (patch) | |
| tree | d783d1ba5096194ddace6198062cf19c9f19e280 /src/lib | |
| parent | 1c6bcfe2208d76393aa1f4b677de689c2e52a976 (diff) | |
Disallow AudioBuffer copy construction.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
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; |
