Merge pull request #8979
80b5bf8
gcc: fix uninitialized constructor warnings (jeff)
This commit is contained in:
commit
a87f2bdd3f
|
@ -77,7 +77,7 @@ namespace cryptonote
|
||||||
// outputs <= HF_VERSION_VIEW_TAGS
|
// outputs <= HF_VERSION_VIEW_TAGS
|
||||||
struct txout_to_key
|
struct txout_to_key
|
||||||
{
|
{
|
||||||
txout_to_key() { }
|
txout_to_key(): key() { }
|
||||||
txout_to_key(const crypto::public_key &_key) : key(_key) { }
|
txout_to_key(const crypto::public_key &_key) : key(_key) { }
|
||||||
crypto::public_key key;
|
crypto::public_key key;
|
||||||
};
|
};
|
||||||
|
@ -85,7 +85,7 @@ namespace cryptonote
|
||||||
// outputs >= HF_VERSION_VIEW_TAGS
|
// outputs >= HF_VERSION_VIEW_TAGS
|
||||||
struct txout_to_tagged_key
|
struct txout_to_tagged_key
|
||||||
{
|
{
|
||||||
txout_to_tagged_key() { }
|
txout_to_tagged_key(): key(), view_tag() { }
|
||||||
txout_to_tagged_key(const crypto::public_key &_key, const crypto::view_tag &_view_tag) : key(_key), view_tag(_view_tag) { }
|
txout_to_tagged_key(const crypto::public_key &_key, const crypto::view_tag &_view_tag) : key(_key), view_tag(_view_tag) { }
|
||||||
crypto::public_key key;
|
crypto::public_key key;
|
||||||
crypto::view_tag view_tag; // optimization to reduce scanning time
|
crypto::view_tag view_tag; // optimization to reduce scanning time
|
||||||
|
|
|
@ -1609,6 +1609,6 @@ namespace cryptonote
|
||||||
*/
|
*/
|
||||||
void send_miner_notifications(uint64_t height, const crypto::hash &seed_hash, const crypto::hash &prev_id, uint64_t already_generated_coins);
|
void send_miner_notifications(uint64_t height, const crypto::hash &seed_hash, const crypto::hash &prev_id, uint64_t already_generated_coins);
|
||||||
|
|
||||||
friend class BlockchainAndPool;
|
friend struct BlockchainAndPool;
|
||||||
};
|
};
|
||||||
} // namespace cryptonote
|
} // namespace cryptonote
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
|
|
||||||
#include "blockchain.h"
|
#include "blockchain.h"
|
||||||
#include "tx_pool.h"
|
#include "tx_pool.h"
|
||||||
|
#include "warnings.h"
|
||||||
|
|
||||||
namespace cryptonote
|
namespace cryptonote
|
||||||
{
|
{
|
||||||
|
@ -53,6 +54,9 @@ struct BlockchainAndPool
|
||||||
Blockchain blockchain;
|
Blockchain blockchain;
|
||||||
tx_memory_pool tx_pool;
|
tx_memory_pool tx_pool;
|
||||||
|
|
||||||
|
PUSH_WARNINGS
|
||||||
|
DISABLE_GCC_WARNING(uninitialized)
|
||||||
BlockchainAndPool(): blockchain(tx_pool), tx_pool(blockchain) {}
|
BlockchainAndPool(): blockchain(tx_pool), tx_pool(blockchain) {}
|
||||||
|
POP_WARNINGS
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -676,7 +676,7 @@ private:
|
||||||
//! Next timestamp that a DB check for relayable txes is allowed
|
//! Next timestamp that a DB check for relayable txes is allowed
|
||||||
std::atomic<time_t> m_next_check;
|
std::atomic<time_t> m_next_check;
|
||||||
|
|
||||||
friend class BlockchainAndPool;
|
friend struct BlockchainAndPool;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -218,7 +218,7 @@ namespace rct {
|
||||||
rct::key a, b, t;
|
rct::key a, b, t;
|
||||||
|
|
||||||
Bulletproof():
|
Bulletproof():
|
||||||
A({}), S({}), T1({}), T2({}), taux({}), mu({}), a({}), b({}), t({}) {}
|
A({}), S({}), T1({}), T2({}), taux({}), mu({}), a({}), b({}), t({}), V({}), L({}), R({}) {}
|
||||||
Bulletproof(const rct::key &V, const rct::key &A, const rct::key &S, const rct::key &T1, const rct::key &T2, const rct::key &taux, const rct::key &mu, const rct::keyV &L, const rct::keyV &R, const rct::key &a, const rct::key &b, const rct::key &t):
|
Bulletproof(const rct::key &V, const rct::key &A, const rct::key &S, const rct::key &T1, const rct::key &T2, const rct::key &taux, const rct::key &mu, const rct::keyV &L, const rct::keyV &R, const rct::key &a, const rct::key &b, const rct::key &t):
|
||||||
V({V}), A(A), S(S), T1(T1), T2(T2), taux(taux), mu(mu), L(L), R(R), a(a), b(b), t(t) {}
|
V({V}), A(A), S(S), T1(T1), T2(T2), taux(taux), mu(mu), L(L), R(R), a(a), b(b), t(t) {}
|
||||||
Bulletproof(const rct::keyV &V, const rct::key &A, const rct::key &S, const rct::key &T1, const rct::key &T2, const rct::key &taux, const rct::key &mu, const rct::keyV &L, const rct::keyV &R, const rct::key &a, const rct::key &b, const rct::key &t):
|
Bulletproof(const rct::keyV &V, const rct::key &A, const rct::key &S, const rct::key &T1, const rct::key &T2, const rct::key &taux, const rct::key &mu, const rct::keyV &L, const rct::keyV &R, const rct::key &a, const rct::key &b, const rct::key &t):
|
||||||
|
@ -253,7 +253,7 @@ namespace rct {
|
||||||
rct::key r1, s1, d1;
|
rct::key r1, s1, d1;
|
||||||
rct::keyV L, R;
|
rct::keyV L, R;
|
||||||
|
|
||||||
BulletproofPlus() {}
|
BulletproofPlus(): V(), A(), A1(), B(), r1(), s1(), d1(), L(), R() {}
|
||||||
BulletproofPlus(const rct::key &V, const rct::key &A, const rct::key &A1, const rct::key &B, const rct::key &r1, const rct::key &s1, const rct::key &d1, const rct::keyV &L, const rct::keyV &R):
|
BulletproofPlus(const rct::key &V, const rct::key &A, const rct::key &A1, const rct::key &B, const rct::key &r1, const rct::key &s1, const rct::key &d1, const rct::keyV &L, const rct::keyV &R):
|
||||||
V({V}), A(A), A1(A1), B(B), r1(r1), s1(s1), d1(d1), L(L), R(R) {}
|
V({V}), A(A), A1(A1), B(B), r1(r1), s1(s1), d1(d1), L(L), R(R) {}
|
||||||
BulletproofPlus(const rct::keyV &V, const rct::key &A, const rct::key &A1, const rct::key &B, const rct::key &r1, const rct::key &s1, const rct::key &d1, const rct::keyV &L, const rct::keyV &R):
|
BulletproofPlus(const rct::keyV &V, const rct::key &A, const rct::key &A1, const rct::key &B, const rct::key &r1, const rct::key &s1, const rct::key &d1, const rct::keyV &L, const rct::keyV &R):
|
||||||
|
|
Loading…
Reference in New Issue