| Index: tools/gn/function_get_target_outputs.cc
|
| diff --git a/tools/gn/function_get_target_outputs.cc b/tools/gn/function_get_target_outputs.cc
|
| index 6e3cf6563ca0dde20ca4c359c5b95ec2a4763ab5..4e1baf820ab00a8a49049d31d5d6358060200740 100644
|
| --- a/tools/gn/function_get_target_outputs.cc
|
| +++ b/tools/gn/function_get_target_outputs.cc
|
| @@ -92,7 +92,7 @@ Value RunGetTargetOutputs(Scope* scope,
|
| *err = Err(function, "No targets defined in this context.");
|
| return Value();
|
| }
|
| - for (const auto& item : *collector) {
|
| + for (auto* item : *collector) {
|
| if (item->label() != label)
|
| continue;
|
|
|
|
|