Disable unused move and copy constructors and assignment operators, as
reported by clang-tidy.
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I610e60dd082bc7c552a6f304ea44e9970487e558
rotation_thread(rotation_thread_timer_queue& rotation_timer_queue,
notification_thread_handle& notification_thread_handle);
+ rotation_thread(const rotation_thread&) = delete;
+ rotation_thread(rotation_thread&&) = delete;
+ rotation_thread& operator=(const rotation_thread&) = delete;
+ rotation_thread& operator=(rotation_thread&&) = delete;
~rotation_thread();
/* Only use through the lttng_thread facilities. */