mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5eaf16b94
commit
dadf3853e7
@ -39,12 +39,11 @@ class DerivedType : public Type, public AbstractTypeUser {
|
||||
// AbstractTypeUsers - Implement a list of the users that need to be notified
|
||||
// if I am a type, and I get resolved into a more concrete type.
|
||||
//
|
||||
///// FIXME: kill mutable nonsense when Type's are not const
|
||||
///// FIXME: kill mutable nonsense when Types are not const
|
||||
mutable std::vector<AbstractTypeUser *> AbstractTypeUsers;
|
||||
|
||||
protected:
|
||||
DerivedType(PrimitiveID id) : Type("", id), RefCount(0) {
|
||||
}
|
||||
DerivedType(PrimitiveID id) : Type("", id), RefCount(0) {}
|
||||
~DerivedType() {
|
||||
assert(AbstractTypeUsers.empty());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user