From 4f5953efc69c7983a010730270c972dadb9659fe Mon Sep 17 00:00:00 2001 From: Tim Klemm Date: Mon, 21 Oct 2024 11:44:14 -0400 Subject: [PATCH] HPCC-32840 Fix macOS build break Reorder CMPException members to match constructor initialization order. Signed-off-by: Tim Klemm --- system/mp/mpcomm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/mp/mpcomm.cpp b/system/mp/mpcomm.cpp index aa69fc8cfa4..0aa74dd2ee7 100644 --- a/system/mp/mpcomm.cpp +++ b/system/mp/mpcomm.cpp @@ -221,7 +221,6 @@ struct MultiPacketHeader class DECL_EXCEPTION CMPException: public IMP_Exception, public CInterface { - StringAttr msg; public: IMPLEMENT_IINTERFACE; @@ -254,6 +253,7 @@ class DECL_EXCEPTION CMPException: public IMP_Exception, public CInterface private: MessagePassingError error; SocketEndpoint endpoint; + StringAttr msg; };