From dadf3853e793529cf8ed4e0e9bf6627461b1c5db Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 6 Feb 2004 18:40:35 +0000 Subject: [PATCH] Fix grammar. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11153 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DerivedTypes.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 05b065b8a1a..117a0b94239 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -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 AbstractTypeUsers; protected: - DerivedType(PrimitiveID id) : Type("", id), RefCount(0) { - } + DerivedType(PrimitiveID id) : Type("", id), RefCount(0) {} ~DerivedType() { assert(AbstractTypeUsers.empty()); } -- 2.34.1