Fix grammar.

llvm-svn: 11153
This commit is contained in:
Misha Brukman 2004-02-06 18:40:35 +00:00
parent 59bb9d69c7
commit dafb899df2

View File

@ -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());
}