From d15876595f1878adb28f6e2e83bed8c4047cdfa5 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Sat, 16 Feb 2019 12:53:25 -0800 Subject: [PATCH] Fix init order to quiet warnings --- 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 5ca5e273f8..7be173adb1 100644 --- a/include/tool/coroutine.h +++ b/include/tool/coroutine.h @@ -3,7 +3,7 @@ * * Copyright (C) 2013 CERN * @author Tomasz Wlostowski - * Copyright (C) 2016 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2016-2019 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -136,8 +136,8 @@ public: m_func( std::move( aEntry ) ), m_running( false ), m_args( 0 ), - m_callContext( nullptr ), m_caller( nullptr ), + m_callContext( nullptr ), m_callee( nullptr ), m_retVal( 0 ) {