diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-30 22:13:42 -0300 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-30 22:15:37 -0300 |
commit | 011c39c2969420d7ca8b40fbf6f3364fe72da2d0 (patch) | |
tree | 450ce972f02a9ff3568685b337df7fe22e3814c9 /src/net_processing.h | |
parent | c9327306b580bb161d1732c0a0260b46c0df015c (diff) | |
parent | fa69ac761441af3e1195fbb4018b18233a4433d2 (diff) |
Merge #14331: doxygen: Fix member comments
fa69ac7614 doxygen: Fix member comments (MarcoFalke)
Pull request description:
Trailing comments must be indicted with the caret `//!<`.
Not all places do this right now, see for example https://dev.visucore.com/bitcoin/doxygen/txmempool_8h.html#a2bc6653552b5871101b6cbefdbaf251f, but they can be fixed with an almost-scripted-diff:
```
sed -i --regexp-extended -e 's/((,|;) *\/\/!) /\1< /g' $(git grep --extended-regexp -l '(,|;)\s*//!\s')
```
(Same as [doxygen] Fix member comments #7793)
Tree-SHA512: 451077008353ccc6fcc795f34094b2d022feb7a171b562a07ba4de0dcb0aebc137e12b03970764bd81e2da386751d042903db4c4831900f43c0cfde804c81b2b
Diffstat (limited to 'src/net_processing.h')
-rw-r--r-- | src/net_processing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index 88dbdf556d..0113e25f7e 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -71,7 +71,7 @@ public: void EvictExtraOutboundPeers(int64_t time_in_seconds) EXCLUSIVE_LOCKS_REQUIRED(cs_main); private: - int64_t m_stale_tip_check_time; //! Next time to check for stale tip + int64_t m_stale_tip_check_time; //!< Next time to check for stale tip /** Enable BIP61 (sending reject messages) */ const bool m_enable_bip61; |