Fix build breakage caused by change to ValueMapTest.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211083 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zachary Turner 2014-06-17 00:38:40 +00:00
parent 0dee67560f
commit 4072aa3649

View File

@ -180,7 +180,7 @@ TYPED_TEST(ValueMapTest, ConfiguredCollisionBehavior) {
template<typename KeyT, typename MutexT>
struct LockMutex : ValueMapConfig<KeyT, MutexT> {
struct ExtraData {
mutex_type *M;
MutexT *M;
bool *CalledRAUW;
bool *CalledDeleted;
};
@ -192,7 +192,7 @@ struct LockMutex : ValueMapConfig<KeyT, MutexT> {
*Data.CalledDeleted = true;
EXPECT_FALSE(Data.M->tryacquire()) << "Mutex should already be locked.";
}
static mutex_type *getMutex(const ExtraData &Data) { return Data.M; }
static MutexT *getMutex(const ExtraData &Data) { return Data.M; }
};
#if LLVM_ENABLE_THREADS
TYPED_TEST(ValueMapTest, LocksMutex) {