diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-08-26 10:39:10 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-08-26 10:44:26 +0200 |
commit | fa9eade142964d5482fe8d2109fb67a9556ae93d (patch) | |
tree | fb47b3838e0b76d50e5b3e617442bdbcca1a2e1a /doc | |
parent | fa786570a5fdf6723b35883054f9f840a3440f92 (diff) |
Remove GetAddrName
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines.html#c131-avoid-trivial-getters-and-setters
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tracing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tracing.md b/doc/tracing.md index 1242a0d250..87fc9603fe 100644 --- a/doc/tracing.md +++ b/doc/tracing.md @@ -147,7 +147,7 @@ For example: ```C++ TRACE6(net, inbound_message, pnode->GetId(), - pnode->GetAddrName().c_str(), + pnode->m_addr_name.c_str(), pnode->ConnectionTypeAsString().c_str(), sanitizedType.c_str(), msg.data.size(), |