get rid of maybe-uninitialized warnings

This commit is contained in:
ado
2021-02-01 00:56:42 +01:00
parent 035e27c5ab
commit d887dff82a
6 changed files with 88 additions and 117 deletions

View File

@@ -541,9 +541,6 @@ TEST_CASE("testing csv on multiple lines with quotes") {
while (!p.eof()) {
auto a = p.get_next<int, double, std::string>();
auto [x, y, z] = a;
std::cout << "=====================" << std::endl;
std::cout << x << ' ' << y << ' ' << z << std::endl;
i.emplace_back(ss::to_object<X>(a));
}
@@ -575,9 +572,6 @@ TEST_CASE("testing csv on multiple lines with escapes") {
while (!p.eof()) {
auto a = p.get_next<int, double, std::string>();
auto [x, y, z] = a;
std::cout << "=====================" << std::endl;
std::cout << x << ' ' << y << ' ' << z << std::endl;
i.emplace_back(ss::to_object<X>(a));
}