diff options
| author | Pieter Wuille <[email protected]> | 2017-06-06 16:40:48 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-06-06 17:00:19 -0700 |
| commit | be3e042c20e2f3449b7b55d1cab0a80b0c6f00af (patch) | |
| tree | 625ebebf787ed1a54bc8014bab3dfcdca407b342 /src/protocol.cpp | |
| parent | Merge #10331: Share config between util and functional tests (diff) | |
| parent | Perform member initialization in initialization lists where possible (diff) | |
| download | discoin-be3e042c20e2f3449b7b55d1cab0a80b0c6f00af.tar.xz discoin-be3e042c20e2f3449b7b55d1cab0a80b0c6f00af.zip | |
Merge #10523: Perform member initialization in initialization lists where possible
656dbd871 Perform member initialization in initialization lists where possible (practicalswift)
Tree-SHA512: 048380f4da23ab1eaaf471801a01dbd76f2235afb686c1489b30a6bac109195134afc83414b8378d3482a9042d537ec62d30136dadb9347cf06b07fb5c693208
Diffstat (limited to 'src/protocol.cpp')
| -rw-r--r-- | src/protocol.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 28d1d0eeb..6cd246ed5 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -151,11 +151,7 @@ CInv::CInv() hash.SetNull(); } -CInv::CInv(int typeIn, const uint256& hashIn) -{ - type = typeIn; - hash = hashIn; -} +CInv::CInv(int typeIn, const uint256& hashIn) : type(typeIn), hash(hashIn) {} bool operator<(const CInv& a, const CInv& b) { |