summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-11-18 20:45:06 +0000
committerCarl Hetherington <carl@carlh.net>2009-11-18 20:45:06 +0000
commit2feede2e8ce393b8684638c526006dfb46ef4908 (patch)
treed451c61b36d5cde9990f85536ea546b98a0ababa /libs/ardour
parent57e1358fb2d8a8ab51b4996808e0eaa41492fb9e (diff)
Cleanup previous commit.
git-svn-id: svn://localhost/ardour2/branches/3.0@6127 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/buffer_set.h3
-rw-r--r--libs/ardour/buffer_set.cc1
2 files changed, 0 insertions, 4 deletions
diff --git a/libs/ardour/ardour/buffer_set.h b/libs/ardour/ardour/buffer_set.h
index 0c4d5671d3..278496ffbc 100644
--- a/libs/ardour/ardour/buffer_set.h
+++ b/libs/ardour/ardour/buffer_set.h
@@ -167,9 +167,6 @@ private:
/// False if we 'own' the contained buffers, if true we mirror a PortSet)
bool _is_mirror;
-
- /// Whether the buffer set should be considered silent
- bool _is_silent;
};
diff --git a/libs/ardour/buffer_set.cc b/libs/ardour/buffer_set.cc
index 70f75985f7..2a1e7f2498 100644
--- a/libs/ardour/buffer_set.cc
+++ b/libs/ardour/buffer_set.cc
@@ -39,7 +39,6 @@ namespace ARDOUR {
/** Create a new, empty BufferSet */
BufferSet::BufferSet()
: _is_mirror(false)
- , _is_silent(false)
{
for (size_t i=0; i < DataType::num_types; ++i) {
_buffers.push_back(BufferVec());