Skip to content

Commit ad83af4

Browse files
authored
Merge pull request cmu-db#1400 from mbutrovich/clang_fix
Fix warning for unused lambda capture on Clang 9.1
2 parents eac41e0 + cb33102 commit ad83af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/codegen/csv_scan_translator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class CSVScanTranslatorTest : public PelotonCodeGenTest {
3636
TEST_F(CSVScanTranslatorTest, IntCsvScan) {
3737
// The quoting character and a helper function to quote a given string
3838
const char quote = '"';
39-
const auto quote_string = [quote](std::string s) {
39+
const auto quote_string = [](std::string s) {
4040
return StringUtil::Format("%c%s%c", quote, s.c_str(), quote);
4141
};
4242

0 commit comments

Comments
 (0)