Chromium Code Reviews| Index: tools/gn/value.h |
| diff --git a/tools/gn/value.h b/tools/gn/value.h |
| index a8a83fb7c8c4e1cd828f0c627b7f4205364ccb54..0428818e5da0d44b950113d54df77672c4e83ba2 100644 |
| --- a/tools/gn/value.h |
| +++ b/tools/gn/value.h |
| @@ -43,9 +43,11 @@ class Value { |
| Value(const ParseNode* origin, std::unique_ptr<Scope> scope); |
| Value(const Value& other); |
| + Value(Value&& other); |
| ~Value(); |
| Value& operator=(const Value& other); |
| + Value& operator=(Value&& other) = default; |
| Type type() const { return type_; } |