mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 01:15:33 -05:00
Merge pull request #1561
d561f4adenable clang checks that were disabled (Chris Vickio)0aefb2f6remove std::move from return statements (pessimizing-move warning) (Chris Vickio)629d5b76change counter from bool to int (deprecated-increment-bool warning) (Chris Vickio)fb76d439add extra braces around subobjects (missing-braces warning) (Chris Vickio)3b6d5f25make struct/class declarations consistent (mismatched-tags warning) (Chris Vickio)fcf66925remove unused fields from network_throttle (unused-private-field warning) (Chris Vickio)296f8c16inline unused function (for unused-function warning) (Chris Vickio)
This commit is contained in:
commit
ec323d8c3f
9 changed files with 71 additions and 77 deletions
|
|
@ -32,8 +32,7 @@
|
|||
#include "wallet/wallet2.h"
|
||||
|
||||
namespace Monero {
|
||||
|
||||
class AddressBookRow;
|
||||
|
||||
class WalletImpl;
|
||||
|
||||
class AddressBookImpl : public AddressBook
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@
|
|||
|
||||
namespace Monero {
|
||||
|
||||
class TransactionInfo;
|
||||
class WalletImpl;
|
||||
|
||||
class TransactionHistoryImpl : public TransactionHistory
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ private:
|
|||
friend class PendingTransactionImpl;
|
||||
friend class UnsignedTransactionImpl;
|
||||
friend class TransactionHistoryImpl;
|
||||
friend class Wallet2CallbackImpl;
|
||||
friend struct Wallet2CallbackImpl;
|
||||
friend class AddressBookImpl;
|
||||
|
||||
tools::wallet2 * m_wallet;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue