From c2f4797539b5b04cc30c5ed1f2a3ca1c46090bfa Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Tue, 21 Jan 2025 16:15:56 +0000 Subject: [PATCH] uan: Move variable declaration to avoid formatting conflicts --- src/uan/model/uan-tx-mode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uan/model/uan-tx-mode.h b/src/uan/model/uan-tx-mode.h index df0ca5246..fc08c2dc6 100644 --- a/src/uan/model/uan-tx-mode.h +++ b/src/uan/model/uan-tx-mode.h @@ -95,12 +95,12 @@ class UanTxMode uint32_t GetUid() const; private: + uint32_t m_uid; //!< Mode id + friend class UanTxModeFactory; friend std::ostream& operator<<(std::ostream& os, const UanTxMode& mode); friend std::istream& operator>>(std::istream& is, UanTxMode& mode); - uint32_t m_uid; //!< Mode id - }; // class UanTxMode /**