Skip to content

Commit 350add7

Browse files
Devmate Botfacebook-github-bot
authored andcommitted
Fix CQS signal facebook-hte-LocalVariableShadowWarning in fbcode/dwio/nimble
Differential Revision: D88143576
1 parent 6426223 commit 350add7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dwio/nimble/tablet/tests/TabletTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,10 +610,10 @@ TEST_F(TabletTest, optionalSections) {
610610
ASSERT_EQ(zeroes, section->content());
611611
};
612612

613-
auto check4 = [&, empty = std::string()]() {
613+
auto check4 = [&, emptyStr = std::string()]() {
614614
auto section = tablet->loadOptionalSection("section4");
615615
ASSERT_TRUE(section.has_value());
616-
ASSERT_EQ(empty, section->content());
616+
ASSERT_EQ(emptyStr, section->content());
617617
};
618618

619619
auto check5 = [&]() {

0 commit comments

Comments
 (0)