Skip to content

Commit c1ca912

Browse files
committed
signal display: remove unneeded cast
1 parent b432d2e commit c1ca912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/score-plugin-ui/Ui/SignalDisplay.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ struct Node
143143
const Process::PortFactoryList& portFactory
144144
= doc.app.interfaces<Process::PortFactoryList>();
145145

146-
auto inl = safe_cast<Process::ControlInlet*>(process.inlets().front());
146+
auto inl = process.inlets().front();
147147

148148
auto fact = portFactory.get(inl->concreteKey());
149149
auto port = fact->makePortItem(*inl, doc, this, this);

0 commit comments

Comments
 (0)