| Index: tools/gn/setup.h
|
| diff --git a/tools/gn/setup.h b/tools/gn/setup.h
|
| index 22e655745b1f745e2f584cfaf61b73b2fbc16026..45335bf5b0e66e5fa9ca0167383e0b507ac5ec5a 100644
|
| --- a/tools/gn/setup.h
|
| +++ b/tools/gn/setup.h
|
| @@ -82,7 +82,7 @@ class Setup {
|
| }
|
|
|
| BuildSettings& build_settings() { return build_settings_; }
|
| - Builder* builder() { return builder_.get(); }
|
| + Builder& builder() { return builder_; }
|
| LoaderImpl* loader() { return loader_.get(); }
|
|
|
| // Name of the file in the root build directory that contains the build
|
| @@ -128,7 +128,7 @@ class Setup {
|
|
|
| BuildSettings build_settings_;
|
| scoped_refptr<LoaderImpl> loader_;
|
| - scoped_refptr<Builder> builder_;
|
| + Builder builder_;
|
|
|
| SourceFile root_build_file_;
|
|
|
|
|