diff --git a/tests/Column_test.cpp b/tests/Column_test.cpp index 401d280..419b6c5 100644 --- a/tests/Column_test.cpp +++ b/tests/Column_test.cpp @@ -218,7 +218,6 @@ TEST(Column, stream) { SQLite::Statement query(db, "SELECT * FROM test"); query.executeStep(); std::stringstream ss; - auto col = query.getColumn(0); ss << query.getColumn(0); std::string content = ss.str(); EXPECT_EQ(content, str);