| Index: tools/gn/commands.h
|
| diff --git a/tools/gn/commands.h b/tools/gn/commands.h
|
| index ca4b0f2168b7778690a5b07317423d159e1cbffe..05952a2df09ddc645e76a985bf1bbb8a7d4584bd 100644
|
| --- a/tools/gn/commands.h
|
| +++ b/tools/gn/commands.h
|
| @@ -11,6 +11,7 @@
|
| #include <vector>
|
|
|
| #include "base/strings/string_piece.h"
|
| +#include "tools/gn/pointer_set.h"
|
| #include "tools/gn/target.h"
|
| #include "tools/gn/unique_vector.h"
|
|
|
| @@ -174,7 +175,7 @@ void FilterTargetsByPatterns(const std::vector<const Target*>& input,
|
| // The vector will be modified so that only the printed targets will remain.
|
| void FilterAndPrintTargets(bool indent, std::vector<const Target*>* targets);
|
| void FilterAndPrintTargetSet(bool indent,
|
| - const std::set<const Target*>& targets);
|
| + const PointerSet<const Target>& targets);
|
|
|
| } // namespace commands
|
|
|
|
|