Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 30, 2025
1 parent d93b25a commit d3758b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/core/test_util/fuzz_config_vars_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ std::vector<std::string> ExperimentConfigChoices() {

std::vector<std::string> TracerConfigChoices() {
std::vector<std::string> choices;
for (auto [name, _] : GetAllTraceFlags()) {
for (const auto& [name, _] : GetAllTraceFlags()) {
choices.push_back(name);
choices.push_back(absl::StrCat("-", name));
}
Expand Down

0 comments on commit d3758b4

Please sign in to comment.