summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-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());