summaryrefslogtreecommitdiffstats
path: root/include/ingen/Tee.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Tee.hpp')
-rw-r--r--include/ingen/Tee.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ingen/Tee.hpp b/include/ingen/Tee.hpp
index 1e6805cc..2158190f 100644
--- a/include/ingen/Tee.hpp
+++ b/include/ingen/Tee.hpp
@@ -34,7 +34,7 @@ class Tee : public Interface
public:
using Sinks = std::vector<std::shared_ptr<Interface>>;
- explicit Tee(Sinks sinks) : _sinks(std::move(sinks)) {}
+ explicit Tee(Sinks sinks) noexcept : _sinks(std::move(sinks)) {}
std::shared_ptr<Interface> respondee() const override {
return _sinks.front()->respondee();