mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4872
fc99f177
lmdb: fix gcc 7.3.0 'implicit-fallthrough' warning (xiphon)
This commit is contained in:
commit
a605c0da08
1 changed files with 6 additions and 10 deletions
|
@ -4369,16 +4369,12 @@ void BlockchainLMDB::migrate_2_3()
|
||||||
|
|
||||||
void BlockchainLMDB::migrate(const uint32_t oldversion)
|
void BlockchainLMDB::migrate(const uint32_t oldversion)
|
||||||
{
|
{
|
||||||
switch(oldversion) {
|
if (oldversion < 1)
|
||||||
case 0:
|
migrate_0_1();
|
||||||
migrate_0_1(); /* FALLTHRU */
|
if (oldversion < 2)
|
||||||
case 1:
|
migrate_1_2();
|
||||||
migrate_1_2(); /* FALLTHRU */
|
if (oldversion < 3)
|
||||||
case 2:
|
migrate_2_3();
|
||||||
migrate_2_3(); /* FALLTHRU */
|
|
||||||
default:
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace cryptonote
|
} // namespace cryptonote
|
||||||
|
|
Loading…
Reference in a new issue