mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Remove dependence on llvm::ReferenceAdder, which no longer
exists. Swift SVN r16624
This commit is contained in:
@@ -306,9 +306,8 @@ public:
|
||||
}
|
||||
|
||||
/// Access to the allocator.
|
||||
typedef typename llvm::ReferenceAdder<AllocatorTy>::result AllocatorRefTy;
|
||||
typedef typename llvm::ReferenceAdder<const AllocatorTy>::result
|
||||
AllocatorCRefTy;
|
||||
typedef AllocatorTy &AllocatorRefTy;
|
||||
typedef const AllocatorTy &AllocatorCRefTy;
|
||||
AllocatorRefTy getAllocator() { return Allocator; }
|
||||
AllocatorCRefTy getAllocator() const { return Allocator; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user