| Index: tools/gn/ninja_copy_target_writer.h
|
| diff --git a/tools/gn/ninja_copy_target_writer.h b/tools/gn/ninja_copy_target_writer.h
|
| index 01766d8e642cf6806cae1b9539dd207a36265881..9e1746ee9cc09820ebc16cf913bc96273df4c751 100644
|
| --- a/tools/gn/ninja_copy_target_writer.h
|
| +++ b/tools/gn/ninja_copy_target_writer.h
|
| @@ -5,7 +5,7 @@
|
| #ifndef TOOLS_GN_NINJA_COPY_TARGET_WRITER_H_
|
| #define TOOLS_GN_NINJA_COPY_TARGET_WRITER_H_
|
|
|
| -#include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "tools/gn/ninja_target_writer.h"
|
|
|
| class Tool;
|
| @@ -14,9 +14,9 @@ class Tool;
|
| class NinjaCopyTargetWriter : public NinjaTargetWriter {
|
| public:
|
| NinjaCopyTargetWriter(const Target* target, std::ostream& out);
|
| - virtual ~NinjaCopyTargetWriter();
|
| + ~NinjaCopyTargetWriter() override;
|
|
|
| - virtual void Run() override;
|
| + void Run() override;
|
|
|
| private:
|
| // Writes the rules top copy the file(s), putting the computed output file
|
|
|