We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214e3f3 commit 7fb4998Copy full SHA for 7fb4998
examples/cpp/route_guide/helper.cc
@@ -53,7 +53,7 @@ std::string GetDbFileContent(int argc, char** argv) {
53
std::ifstream db_file(db_path);
54
if (!db_file.is_open()) {
55
std::cout << "Failed to open " << db_path << std::endl;
56
- return "";
+ abort();
57
}
58
std::stringstream db;
59
db << db_file.rdbuf();
0 commit comments