| Index: tools/gn/string_utils.cc
|
| diff --git a/tools/gn/string_utils.cc b/tools/gn/string_utils.cc
|
| index 6f47b91c875a8ac09d126e0fd440ee9d9ed5027e..5e8068111a52f77a4030ef32a501cba8cafc88c8 100644
|
| --- a/tools/gn/string_utils.cc
|
| +++ b/tools/gn/string_utils.cc
|
| @@ -81,7 +81,7 @@ bool AppendInterpolatedExpression(Scope* scope,
|
| }
|
|
|
| // Parse.
|
| - scoped_ptr<ParseNode> node = Parser::ParseExpression(tokens, err);
|
| + std::unique_ptr<ParseNode> node = Parser::ParseExpression(tokens, err);
|
| if (err->has_error()) {
|
| // Rewrite error as above.
|
| *err = ErrInsideStringToken(token, begin_offset, end_offset - begin_offset,
|
|
|