summaryrefslogtreecommitdiff
path: root/libs/surfaces/websockets/ardour_websockets.cc
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-02-22 13:50:24 +0100
committerRobin Gareus <robin@gareus.org>2020-02-22 23:10:24 +0100
commit047b05b86074e67b4742de4634efafd94c2dc0bf (patch)
treed0b6f4e5a55bf7dc98d8be36783b05b21325fdb1 /libs/surfaces/websockets/ardour_websockets.cc
parentbb448080b6f980e669222cc67dbbc6db9e7fb1fd (diff)
Remove all initializer list usages
Diffstat (limited to 'libs/surfaces/websockets/ardour_websockets.cc')
-rw-r--r--libs/surfaces/websockets/ardour_websockets.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/surfaces/websockets/ardour_websockets.cc b/libs/surfaces/websockets/ardour_websockets.cc
index 0dd3bea4c2..e02bd84d28 100644
--- a/libs/surfaces/websockets/ardour_websockets.cc
+++ b/libs/surfaces/websockets/ardour_websockets.cc
@@ -43,7 +43,11 @@ ArdourWebsockets::ArdourWebsockets (Session& s)
, _server (*this)
, _dispatcher (*this)
{
- _components = { &_strips, &_globals, &_server, &_feedback, &_dispatcher };
+ _components.push_back (&_strips);
+ _components.push_back (&_globals);
+ _components.push_back (&_server);
+ _components.push_back (&_feedback);
+ _components.push_back (&_dispatcher);
}
ArdourWebsockets::~ArdourWebsockets ()