| 48 | } |
| 49 | |
| 50 | void check_keyword( std::ifstream& file, std::string_view keyword ) |
| 51 | { |
| 52 | OpenGeodeBasicException::check_exception( |
| 53 | line_starts_with( file, keyword ), nullptr, |
| 54 | OpenGeodeException::TYPE::data, |
| 55 | absl::StrCat( "Line should starts with \"", keyword, "\"" ) ); |
| 56 | } |
| 57 | |
| 58 | std::string goto_keyword( std::ifstream& file, std::string_view word ) |
| 59 | { |
nothing calls this directly
no test coverage detected