From a7f61c3e68d60829a2482a0f7776885adbbe1dc6 Mon Sep 17 00:00:00 2001 From: cyan317 <120398799+cindyyan317@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:56:01 +0000 Subject: [PATCH] remove _ from public member (#1217) --- src/web/interface/ConnectionBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/interface/ConnectionBase.hpp b/src/web/interface/ConnectionBase.hpp index 3578a4da1..4f0854713 100644 --- a/src/web/interface/ConnectionBase.hpp +++ b/src/web/interface/ConnectionBase.hpp @@ -44,11 +44,11 @@ namespace http = boost::beast::http; struct ConnectionBase : public util::Taggable { protected: boost::system::error_code ec_; + bool isAdmin_ = false; public: std::string const clientIp; bool upgraded = false; - bool isAdmin_ = false; boost::signals2::signal onDisconnect; std::uint32_t apiSubVersion = 0;