| Index: tools/gn/filesystem_utils.cc
|
| diff --git a/tools/gn/filesystem_utils.cc b/tools/gn/filesystem_utils.cc
|
| index 700b7b89f2e21ce96bb4b6b25d8cb9a5f7c66514..89e8a305ae3c3aa179ecc916fc57e10db5ec74ce 100644
|
| --- a/tools/gn/filesystem_utils.cc
|
| +++ b/tools/gn/filesystem_utils.cc
|
| @@ -422,7 +422,7 @@ bool MakeAbsolutePathRelativeIfPossible(const base::StringPiece& source_root,
|
| }
|
|
|
| void NormalizePath(std::string* path) {
|
| - char* pathbuf = path->empty() ? NULL : &(*path)[0];
|
| + char* pathbuf = path->empty() ? nullptr : &(*path)[0];
|
|
|
| // top_index is the first character we can modify in the path. Anything
|
| // before this indicates where the path is relative to.
|
|
|