Index: tools/gn/function_foreach.cc |
diff --git a/tools/gn/function_foreach.cc b/tools/gn/function_foreach.cc |
index 321bd0a0204904d5ffd53e013c693ebd07e1e590..55b1d00c13bc59a14166fbc1237389dd48e6e27e 100644 |
--- a/tools/gn/function_foreach.cc |
+++ b/tools/gn/function_foreach.cc |
@@ -67,7 +67,7 @@ Value RunForEach(Scope* scope, |
// Extract the list, avoid a copy if it's an identifier (common case). |
Value value_storage_for_exec; // Backing for list_value when we need to exec. |
- const Value* list_value = NULL; |
+ const Value* list_value = nullptr; |
const IdentifierNode* list_identifier = args_vector[1]->AsIdentifier(); |
if (list_identifier) { |
list_value = scope->GetValue(list_identifier->value().value(), true); |