From c469f072f131a4537bd97ddcdc00fb741f98b3b0 Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Mon, 23 Nov 2020 16:08:55 -0600 Subject: [PATCH] =?UTF-8?q?warning:=20=E2=80=98Active=E2=80=99=20will=20be?= =?UTF-8?q?=20initialized=20after=20'CanWait'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- simgear/nasal/cppbind/NasalEmesaryInterface.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx index 5f9e1665..a25ab7bf 100644 --- a/simgear/nasal/cppbind/NasalEmesaryInterface.hxx +++ b/simgear/nasal/cppbind/NasalEmesaryInterface.hxx @@ -63,7 +63,7 @@ namespace nasal class NasalMainLoopRecipient : public simgear::Emesary::IReceiver { public: - NasalMainLoopRecipient() : receiveCount(0), Active(false), CanWait(false) { + NasalMainLoopRecipient() : receiveCount(0), CanWait(false), Active(false) { simgear::Emesary::GlobalTransmitter::instance()->Register(*this); } virtual ~NasalMainLoopRecipient() {