[llvm-commits] [parallel] CVS: llvm/include/llvm/DerivedTypes.h
Misha Brukman
brukman at cs.uiuc.edu
Fri Feb 6 12:41:47 PST 2004
Changes in directory llvm/include/llvm:
DerivedTypes.h updated: 1.49 -> 1.49.2.1
---
Log message:
Fix grammar.
---
Diffs of the changes: (+2 -3)
Index: llvm/include/llvm/DerivedTypes.h
diff -u llvm/include/llvm/DerivedTypes.h:1.49 llvm/include/llvm/DerivedTypes.h:1.49.2.1
--- llvm/include/llvm/DerivedTypes.h:1.49 Thu Jan 8 23:45:58 2004
+++ llvm/include/llvm/DerivedTypes.h Fri Feb 6 12:40:35 2004
@@ -39,12 +39,11 @@
// 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());
}
More information about the llvm-commits
mailing list