We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d76a8b9 + 337eae4 commit d54aa5dCopy full SHA for d54aa5d
include/swift/AST/FineGrainedDependencies.h
@@ -19,6 +19,7 @@
19
#include "swift/Basic/Range.h"
20
#include "swift/Basic/ReferenceDependencyKeys.h"
21
#include "llvm/ADT/Hashing.h"
22
+#include "llvm/ADT/SetVector.h"
23
#include "llvm/Support/MD5.h"
24
#include "llvm/Support/MemoryBuffer.h"
25
#include "llvm/Support/YAMLParser.h"
@@ -684,7 +685,7 @@ class SourceFileDepGraphNode : public DepGraphNode {
684
685
size_t sequenceNumber = ~0;
686
687
/// Holds the sequence numbers of definitions I depend upon.
- std::unordered_set<size_t> defsIDependUpon;
688
+ llvm::SetVector<size_t> defsIDependUpon;
689
690
/// True iff a Decl exists for this node.
691
/// If a provides and a depends in the existing system both have the same key,
0 commit comments