mirror of
https://github.com/red0124/ssp.git
synced 2026-01-29 22:29:54 +01:00
get rid of maybe-uninitialized warnings
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user