aboutsummaryrefslogtreecommitdiff
path: root/src/outputtype.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-06-27 11:05:03 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-07-01 18:03:12 -0400
commitfa927ff884ae373c676deed63180a8d238872cdc (patch)
tree2531154ff67dd4190feaf2adbe10d4e7e64c7cd1 /src/outputtype.cpp
parentfaddad71f648ed99734f4f8811bd4bc7232ca670 (diff)
downloadbitcoin-fa927ff884ae373c676deed63180a8d238872cdc.tar.xz
Enable Wswitch for OutputType
Diffstat (limited to 'src/outputtype.cpp')
-rw-r--r--src/outputtype.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/outputtype.cpp b/src/outputtype.cpp
index 871474d56e..e978852826 100644
--- a/src/outputtype.cpp
+++ b/src/outputtype.cpp
@@ -42,8 +42,8 @@ const std::string& FormatOutputType(OutputType type)
case OutputType::LEGACY: return OUTPUT_TYPE_STRING_LEGACY;
case OutputType::P2SH_SEGWIT: return OUTPUT_TYPE_STRING_P2SH_SEGWIT;
case OutputType::BECH32: return OUTPUT_TYPE_STRING_BECH32;
- default: assert(false);
- }
+ } // no default case, so the compiler can warn about missing cases
+ assert(false);
}
CTxDestination GetDestinationForKey(const CPubKey& key, OutputType type)
@@ -61,8 +61,8 @@ CTxDestination GetDestinationForKey(const CPubKey& key, OutputType type)
return witdest;
}
}
- default: assert(false);
- }
+ } // no default case, so the compiler can warn about missing cases
+ assert(false);
}
std::vector<CTxDestination> GetAllDestinationsForKey(const CPubKey& key)
@@ -100,6 +100,6 @@ CTxDestination AddAndGetDestinationForScript(FillableSigningProvider& keystore,
return ScriptHash(witprog);
}
}
- default: assert(false);
- }
+ } // no default case, so the compiler can warn about missing cases
+ assert(false);
}