summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 17:03:17 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 19:55:55 -0400
commitbed910c4aea0db49e5f3d87204f5c20c0d43bbd8 (patch)
treed1d6badcc40b40816700ab4c05fd4405e55402eb /include
parent5c79e4ca151dab969d84899029d8cfdf1f32d654 (diff)
downloadingen-bed910c4aea0db49e5f3d87204f5c20c0d43bbd8.tar.gz
ingen-bed910c4aea0db49e5f3d87204f5c20c0d43bbd8.tar.bz2
ingen-bed910c4aea0db49e5f3d87204f5c20c0d43bbd8.zip
Call std::terminate() directly instead of rethrowing nothing
Diffstat (limited to 'include')
-rw-r--r--include/ingen/client/PortModel.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ingen/client/PortModel.hpp b/include/ingen/client/PortModel.hpp
index 903a435d..eb85eb6c 100644
--- a/include/ingen/client/PortModel.hpp
+++ b/include/ingen/client/PortModel.hpp
@@ -86,8 +86,8 @@ private:
, _direction(dir)
{}
- void add_child(const std::shared_ptr<ObjectModel>& c) override { throw; }
- bool remove_child(const std::shared_ptr<ObjectModel>& c) override { throw; }
+ void add_child(const std::shared_ptr<ObjectModel>& c) override;
+ bool remove_child(const std::shared_ptr<ObjectModel>& c) override;
void set(const std::shared_ptr<ObjectModel>& model) override;