Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: tools/gn/function_get_target_outputs_unittest.cc

Issue 798333005: tools/gn: Pass clang-modernize -use-nullptr over it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address Brett's review - revert some clang-format changes Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/function_get_target_outputs.cc ('k') | tools/gn/function_process_file_template_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/function_get_target_outputs_unittest.cc
diff --git a/tools/gn/function_get_target_outputs_unittest.cc b/tools/gn/function_get_target_outputs_unittest.cc
index be46380c39d91b3fb5a71c378b3728e372a1814d..cd19d9956663bfc6d1def283e907bbb57cbebed6 100644
--- a/tools/gn/function_get_target_outputs_unittest.cc
+++ b/tools/gn/function_get_target_outputs_unittest.cc
@@ -20,7 +20,7 @@ class GetTargetOutputsTest : public testing::Test {
Value GetTargetOutputs(const std::string& name, Err* err) {
FunctionCallNode function;
std::vector<Value> args;
- args.push_back(Value(NULL, name));
+ args.push_back(Value(nullptr, name));
return functions::RunGetTargetOutputs(setup_.scope(), &function, args, err);
}
« no previous file with comments | « tools/gn/function_get_target_outputs.cc ('k') | tools/gn/function_process_file_template_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698