Remove deprecated code, add exception.hpp to single_header_generator.py script

This commit is contained in:
ado
2023-07-10 23:39:08 +02:00
parent 956156b412
commit 567995aafb
4 changed files with 1 additions and 12 deletions

View File

@@ -547,7 +547,6 @@ auto expect_unterminated_quote(Splitter& s, const std::string& line) {
CHECK(s.unterminated_quote());
return vec;
} catch (ss::exception& e) {
// TODO check if this is ok
FAIL(std::string{e.what()});
return decltype(s.split(buff(line.c_str()))){};
}