Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 7d85d5f

Browse files
authored
Merge pull request #1400 from mbutrovich/clang_fix
Fix warning for unused lambda capture on Clang 9.1
2 parents 1244002 + 482338b commit 7d85d5f

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)