From 36b5dc27dd3432e14f11f490ecc1786e587da785 Mon Sep 17 00:00:00 2001 From: lganzzzo Date: Wed, 27 Jun 2018 02:25:59 +0300 Subject: [PATCH] Fix to field ordering --- web/client/RequestExecutor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/client/RequestExecutor.hpp b/web/client/RequestExecutor.hpp index 614bc616..590422e8 100644 --- a/web/client/RequestExecutor.hpp +++ b/web/client/RequestExecutor.hpp @@ -52,8 +52,8 @@ public: constexpr static const v_int32 ERROR_CODE_NO_RESPONSE = 5; private: v_int32 m_errorCode; - v_int32 m_readErrorCode; const char* m_message; + v_int32 m_readErrorCode; public: RequestExecutionError(v_int32 errorCode, const char* message, v_int32 readErrorCode = 0)