From 7f9202842d1850f48c609e744cc75acaa20fc20b Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Tue, 9 Jan 2018 15:22:45 +0100 Subject: [PATCH] Fix an initialization order warning in coroutine.h --- include/tool/coroutine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tool/coroutine.h b/include/tool/coroutine.h index d55e9858fe..5aedc3ecba 100644 --- a/include/tool/coroutine.h +++ b/include/tool/coroutine.h @@ -135,9 +135,9 @@ public: m_func( std::move( aEntry ) ), m_running( false ), m_args( 0 ), + m_callContext( nullptr ), m_callee( nullptr ), - m_retVal( 0 ), - m_callContext( nullptr ) + m_retVal( 0 ) { }