Fix incorrect comment pointed out by Duncan.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2009-06-19 17:20:50 +00:00
parent 6dc11b4df9
commit ae60c0f78e

View File

@ -47,7 +47,7 @@ AbstractTypeUser::~AbstractTypeUser() {}
static ManagedStatic<sys::SmartRWMutex<true> > TypeMapLock;
// Recursive lock used for guarding access to AbstractTypeUsers.
// NOTE: The false template parameter means this will no-op when we're not in
// NOTE: The true template parameter means this will no-op when we're not in
// multithreaded mode.
static ManagedStatic<sys::SmartMutex<true> > AbstractTypeUsersLock;