mirror of https://github.com/facebook/rocksdb.git
Add missing break statement
This commit is contained in:
parent
2e97c38980
commit
d40c1f742f
|
@ -221,6 +221,7 @@ std::string FeatureSet::DebugString() const {
|
||||||
switch (iter.second.type()) {
|
switch (iter.second.type()) {
|
||||||
case Variant::kNull:
|
case Variant::kNull:
|
||||||
out.append("null");
|
out.append("null");
|
||||||
|
break;
|
||||||
case Variant::kBool:
|
case Variant::kBool:
|
||||||
if (iter.second.get_bool()) {
|
if (iter.second.get_bool()) {
|
||||||
out.append("true");
|
out.append("true");
|
||||||
|
|
Loading…
Reference in New Issue