Commit c849952b authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-33840: Fix GCC -Wreorder

This fixes up the merge commit 829cb1a4
parent fc9005ad
...@@ -244,7 +244,7 @@ class thread_pool_generic : public thread_pool ...@@ -244,7 +244,7 @@ class thread_pool_generic : public thread_pool
unsigned int m_concurrency; unsigned int m_concurrency;
/** True, if threadpool is being shutdown, false otherwise */ /** True, if threadpool is being shutdown, false otherwise */
bool m_in_shutdown; bool m_in_shutdown= false;
/** Maintenance timer state : true = active(ON),false = inactive(OFF)*/ /** Maintenance timer state : true = active(ON),false = inactive(OFF)*/
enum class timer_state_t enum class timer_state_t
...@@ -813,7 +813,6 @@ thread_pool_generic::thread_pool_generic(int min_threads, int max_threads) : ...@@ -813,7 +813,6 @@ thread_pool_generic::thread_pool_generic(int min_threads, int max_threads) :
m_wakeups(), m_wakeups(),
m_spurious_wakeups(), m_spurious_wakeups(),
m_timer_state(timer_state_t::ON), m_timer_state(timer_state_t::ON),
m_in_shutdown(),
m_timestamp(), m_timestamp(),
m_long_tasks_count(), m_long_tasks_count(),
m_waiting_task_count(), m_waiting_task_count(),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment