Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into master-next
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-ci committed Jun 17, 2020
2 parents 7e37def + d54aa5d commit 559178f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/swift/AST/FineGrainedDependencies.h
Expand Up @@ -19,6 +19,7 @@
#include "swift/Basic/Range.h"
#include "swift/Basic/ReferenceDependencyKeys.h"
#include "llvm/ADT/Hashing.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/Support/MD5.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/YAMLParser.h"
Expand Down Expand Up @@ -684,7 +685,7 @@ class SourceFileDepGraphNode : public DepGraphNode {
size_t sequenceNumber = ~0;

/// Holds the sequence numbers of definitions I depend upon.
std::unordered_set<size_t> defsIDependUpon;
llvm::SetVector<size_t> defsIDependUpon;

/// True iff a Decl exists for this node.
/// If a provides and a depends in the existing system both have the same key,
Expand Down

0 comments on commit 559178f

Please sign in to comment.