Merge #15887: docs: Align code example style with clang-format

201393f932 Align code example with clang-format (Hennadii Stepanov)

Pull request description:

  With this PR running [clang-format-diff.py](https://github.com/bitcoin/bitcoin/blob/master/contrib/devtools/clang-format-diff.py) on the code example will not fire a format adjustment.

ACKs for commit 201393:
  MarcoFalke:
    trivial ACK 201393f93268f6775d1b5d54119a7210628b333d

Tree-SHA512: 825c5e8cfba1bc140c2dfc38b82c5eec268b82b528af4301f25dfacc1f4f0788e268e72e8512f7ce001be665a8b07964a0af832fd9a1c6bd1c27d252f93619bc
This commit is contained in:
MarcoFalke 2019-04-26 18:31:40 -04:00 committed by pasta
parent 6c424bf4da
commit 3ba32a1116

View File

@ -593,8 +593,8 @@ class AddressBookPage
Mode m_mode; Mode m_mode;
} }
AddressBookPage::AddressBookPage(Mode _mode) : AddressBookPage::AddressBookPage(Mode _mode)
m_mode(_mode) : m_mode(_mode)
... ...
``` ```