Skip to content

Commit 7927e25

Browse files
generatedunixname89002005287564meta-codesync[bot]
authored andcommitted
Fix CQS signal modernize-use-emplace in fbcode/folly/cli
Reviewed By: yfeldblum Differential Revision: D89258173 fbshipit-source-id: 2a7b9f85eadb6ca61b62d90a67d9b44efed629a5
1 parent bdef2a9 commit 7927e25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

third-party/folly/src/folly/cli/test/ProgramOptionsTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ std::string callHelper(
5555
std::vector<std::string> env;
5656
switch (style) {
5757
case ProgramOptionsStyle::GNU:
58-
env.push_back("PROGRAM_OPTIONS_TEST_STYLE=GNU");
58+
env.emplace_back("PROGRAM_OPTIONS_TEST_STYLE=GNU");
5959
break;
6060
case ProgramOptionsStyle::GFLAGS:
61-
env.push_back("PROGRAM_OPTIONS_TEST_STYLE=GFLAGS");
61+
env.emplace_back("PROGRAM_OPTIONS_TEST_STYLE=GFLAGS");
6262
break;
6363
}
6464

0 commit comments

Comments
 (0)