make struct/class declarations consistent (mismatched-tags warning)

This commit is contained in:
Chris Vickio 2017-01-14 13:41:56 +03:00
parent fcf66925c1
commit 3b6d5f255d
4 changed files with 3 additions and 5 deletions

View file

@ -31,7 +31,7 @@
namespace daemonize { namespace daemonize {
class t_internals; struct t_internals;
class t_daemon final { class t_daemon final {
public: public:

View file

@ -32,8 +32,7 @@
#include "wallet/wallet2.h" #include "wallet/wallet2.h"
namespace Monero { namespace Monero {
class AddressBookRow;
class WalletImpl; class WalletImpl;
class AddressBookImpl : public AddressBook class AddressBookImpl : public AddressBook

View file

@ -33,7 +33,6 @@
namespace Monero { namespace Monero {
class TransactionInfo;
class WalletImpl; class WalletImpl;
class TransactionHistoryImpl : public TransactionHistory class TransactionHistoryImpl : public TransactionHistory

View file

@ -123,7 +123,7 @@ private:
private: private:
friend class PendingTransactionImpl; friend class PendingTransactionImpl;
friend class TransactionHistoryImpl; friend class TransactionHistoryImpl;
friend class Wallet2CallbackImpl; friend struct Wallet2CallbackImpl;
friend class AddressBookImpl; friend class AddressBookImpl;
tools::wallet2 * m_wallet; tools::wallet2 * m_wallet;