File switch_case_return.patch of Package sqlitebrowser
--- a/src/sql/ObjectIdentifier.cpp
+++ b/src/sql/ObjectIdentifier.cpp
@@ -49,6 +49,8 @@ std::string escapeIdentifier(const std::
// default branch is removed, even though we have covered all possibilities in the
// switch statement.
return '"' + duplicate_char(id, '"') + '"';
+ default:
+ return id;
}
}