Index: tools/gn/command_refs.cc |
diff --git a/tools/gn/command_refs.cc b/tools/gn/command_refs.cc |
index 742b43b350338652429fdd0fad767718ed6fb877..03ee420028bda82516e2c0eac47595646721e8ed 100644 |
--- a/tools/gn/command_refs.cc |
+++ b/tools/gn/command_refs.cc |
@@ -10,6 +10,7 @@ |
#include "base/strings/string_split.h" |
#include "tools/gn/commands.h" |
#include "tools/gn/deps_iterator.h" |
+#include "tools/gn/dereference_comparator.h" |
#include "tools/gn/filesystem_utils.h" |
#include "tools/gn/input_file.h" |
#include "tools/gn/item.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. |