| Index: tools/gn/command_refs.cc
|
| diff --git a/tools/gn/command_refs.cc b/tools/gn/command_refs.cc
|
| index 742b43b350338652429fdd0fad767718ed6fb877..e139c477fb0bccf69e6b18abeabf2d29791d72c7 100644
|
| --- a/tools/gn/command_refs.cc
|
| +++ b/tools/gn/command_refs.cc
|
| @@ -13,6 +13,7 @@
|
| #include "tools/gn/filesystem_utils.h"
|
| #include "tools/gn/input_file.h"
|
| #include "tools/gn/item.h"
|
| +#include "tools/gn/pointer_set.h"
|
| #include "tools/gn/setup.h"
|
| #include "tools/gn/standard_out.h"
|
| #include "tools/gn/target.h"
|
| @@ -21,7 +22,7 @@ namespace commands {
|
|
|
| namespace {
|
|
|
| -typedef std::set<const Target*> TargetSet;
|
| +typedef PointerSet<const Target> TargetSet;
|
| typedef std::vector<const Target*> TargetVector;
|
|
|
| // Maps targets to the list of targets that depend on them.
|
|
|