From d3a10465b5787e57a413c3c5a3ed82c4edbae687 Mon Sep 17 00:00:00 2001 From: fekir Date: Fri, 18 Aug 2017 20:24:36 +0200 Subject: [PATCH] Remove unused variable --- tests/Column_test.cpp | 1 - 1 file changed, 1 deletion(-) 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);