From dfdd59a7896ccab047d630cd6f38a588857fbcae Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Thu, 19 Sep 2024 12:42:21 -0700 Subject: [PATCH] Constructor fix --- include/aws/iot/MqttRequestResponseClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aws/iot/MqttRequestResponseClient.h b/include/aws/iot/MqttRequestResponseClient.h index 054234c41..3cfb282e9 100644 --- a/include/aws/iot/MqttRequestResponseClient.h +++ b/include/aws/iot/MqttRequestResponseClient.h @@ -127,7 +127,7 @@ namespace Aws class AWS_CRT_CPP_API UnmodeledResponse { public: - UnmodeledResponse() : m_payload(), m_topic() { + UnmodeledResponse() : m_topic(), m_payload() { AWS_ZERO_STRUCT(m_payload); AWS_ZERO_STRUCT(m_topic); }