← Back to team overview

kicad-developers team mailing list archive

[PATCH 1/5] Revert "Fix an initialization order warning in coroutine.h"

 

This reverts commit 7f9202842d1850f48c609e744cc75acaa20fc20b.
---
 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 5aedc3ecb..d55e9858f 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_retVal( 0 ),
+        m_callContext( nullptr )
     {
     }
 

Follow ups

References