summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/io_vector.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-03 23:51:59 +0200
committerRobin Gareus <robin@gareus.org>2016-04-03 23:51:59 +0200
commite84453e8786052790629e8a7323441a3ab5309c8 (patch)
tree4942d6abd1929b9549328747a7f694ccc0d16009 /libs/ardour/ardour/io_vector.h
parent56352723d8388d0eb1f2c93c9ed84b00226ab7c3 (diff)
cement daa10a6a38
Diffstat (limited to 'libs/ardour/ardour/io_vector.h')
-rw-r--r--libs/ardour/ardour/io_vector.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/io_vector.h b/libs/ardour/ardour/io_vector.h
index ef100702c7..0c68f97be3 100644
--- a/libs/ardour/ardour/io_vector.h
+++ b/libs/ardour/ardour/io_vector.h
@@ -29,6 +29,7 @@ namespace ARDOUR {
class IOVector : public std::vector<boost::weak_ptr<ARDOUR::IO> >
{
public:
+#if 0 // unused -- for future reference
bool connected_to (const IOVector& other) const {
for (IOVector::const_iterator i = other.begin(); i != other.end(); ++i) {
boost::shared_ptr<const IO> io = i->lock();
@@ -50,6 +51,7 @@ public:
}
return false;
}
+#endif
bool fed_by (boost::shared_ptr<const IO> other) const {
for (IOVector::const_iterator i = begin(); i != end(); ++i) {