aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h')
-rw-r--r--contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h b/contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h
index e087136f0e2c..37e2d6b2a7e1 100644
--- a/contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h
+++ b/contrib/llvm-project/clang/lib/ARCMigrate/Transforms.h
@@ -93,12 +93,12 @@ public:
bool FullyMigratable;
};
std::vector<GCAttrOccurrence> GCAttrs;
- llvm::DenseSet<unsigned> AttrSet;
- llvm::DenseSet<unsigned> RemovedAttrSet;
+ llvm::DenseSet<SourceLocation> AttrSet;
+ llvm::DenseSet<SourceLocation> RemovedAttrSet;
/// Set of raw '@' locations for 'assign' properties group that contain
/// GC __weak.
- llvm::DenseSet<unsigned> AtPropsWeak;
+ llvm::DenseSet<SourceLocation> AtPropsWeak;
explicit MigrationContext(MigrationPass &pass) : Pass(pass) {}
~MigrationContext();