refactor: prefix private data members with m_

Rename all trailing-underscore private data members to the m_ prefix
required by AGENTS.md, across the auth, crypto, gip, mt76, and usb
transport classes plus the app session classes. Pure rename; no
behavior change. Full build and test suite pass.

Co-Authored-By: qwen3.8-27b@q3_k_xl: renamed members to m_ prefix
This commit is contained in:
portersky
2026-08-29 14:36:28 +02:00
parent ae9c71d76e
commit dfe7e8b87d
12 changed files with 329 additions and 329 deletions
+3 -3
View File
@@ -137,10 +137,10 @@ private:
auto write_beacon(bool pair) -> int;
auto set_channel_candidates() -> int;
usb::transport &transport_;
usb::transport &m_transport;
char build_time_[17] = {};
std::array<channel, num_channels> channels_{};
channel current_channel_{};
std::array<channel, num_channels> m_channels{};
channel m_current_channel{};
};
} // namespace xone::mt76