From 3bda6020b949e0ebcb3960e3e1d66b2578e62587 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 18 Mar 2021 04:09:04 +0100 Subject: [PATCH] Remove excess parentheses --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 1c79b37a21..97e0c270f5 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -3203,7 +3203,7 @@ Editor::separate_regions_between (const TimeSelection& ts) for (TrackSelection::iterator i = tmptracks.begin(); i != tmptracks.end(); ++i) { - RouteTimeAxisView* rtv = dynamic_cast ((*i)); + RouteTimeAxisView* rtv = dynamic_cast (*i); if (!rtv) { continue;