]> Git Repo - VerusCoin.git/commit - src/miner.cpp
Fix compiler warnings
authorDrak <[email protected]>
Sat, 7 Jun 2014 11:57:58 +0000 (12:57 +0100)
committerDrak <[email protected]>
Sat, 7 Jun 2014 11:57:58 +0000 (12:57 +0100)
commit02bec4b268fa32153f26a5f4c089d4f92d887186
tree761927686452f8640d81bc385dccdbf7470b6aaa
parentdb41541bc2e679a5c98ab380837c985e0252ab43
Fix compiler warnings

Fixes the following compiler warning

```
miner.cpp: In constructor ‘COrphan::COrphan(const CTransaction*)’:
miner.cpp:69:14: warning: ‘COrphan::feeRate’ will be initialized after [-Wreorder]
     CFeeRate feeRate;
              ^
miner.cpp:68:12: warning:   ‘double COrphan::dPriority’ [-Wreorder]
     double dPriority;
            ^
miner.cpp:71:5: warning:   when initialized here [-Wreorder]
     COrphan(const CTransaction* ptxIn) : ptx(ptxIn), feeRate(0), dPriority(0)
```
src/miner.cpp
This page took 0.023313 seconds and 4 git commands to generate.