diff options
| author | practicalswift <[email protected]> | 2018-07-26 17:15:32 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-07-26 17:15:32 +0200 |
| commit | 1ac3c983bfe06f75542e4f4e30142952802a46d8 (patch) | |
| tree | c468d61002a392a694c7e2f1eed14a62a77cc63e /src/qt/addresstablemodel.cpp | |
| parent | Merge #13095: build: update ax_boost_chrono/unit_test_framework (diff) | |
| download | discoin-1ac3c983bfe06f75542e4f4e30142952802a46d8.tar.xz discoin-1ac3c983bfe06f75542e4f4e30142952802a46d8.zip | |
Mark single-argument constructors "explicit"
Diffstat (limited to 'src/qt/addresstablemodel.cpp')
| -rw-r--r-- | src/qt/addresstablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index 25b615e6f..eb5cbd889 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -71,7 +71,7 @@ public: QList<AddressTableEntry> cachedAddressTable; AddressTableModel *parent; - AddressTablePriv(AddressTableModel *_parent): + explicit AddressTablePriv(AddressTableModel *_parent): parent(_parent) {} void refreshAddressTable(interfaces::Wallet& wallet) |