Build fix: brace-enclosed initlializer lists error with g++ 4.8
[lttng-tools.git] / src / bin / lttng-sessiond / rotation-thread.cpp
index bc7893475c13c34e816427d1d358740655c53bb3..1f82176f8bd33464117ce3eb05f43c8a42b2ef51 100644 (file)
@@ -395,8 +395,8 @@ void ls::rotation_thread_timer_queue_destroy(struct rotation_thread_timer_queue
 
 ls::rotation_thread::rotation_thread(rotation_thread_timer_queue& rotation_timer_queue,
                                     notification_thread_handle& notification_thread_handle) :
-       _rotation_timer_queue{ rotation_timer_queue },
-       _notification_thread_handle{ notification_thread_handle }
+       _rotation_timer_queue(rotation_timer_queue),
+       _notification_thread_handle(notification_thread_handle)
 {
        _quit_pipe.reset([]() {
                auto raw_pipe = lttng_pipe_open(FD_CLOEXEC);
This page took 0.023065 seconds and 4 git commands to generate.