diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-10-25 01:05:41 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-10-25 01:05:41 +0000 |
commit | f11e923433b62efb0fbaeb2573e8457f1c4a1b1e (patch) | |
tree | 5fbdccb06d7a04e615bc769a6605e43a4c1c073c | |
parent | 94d881f9a3a92f32e579a2ebea818b6621f2518a (diff) |
Tidy up testcase from r142890, spotted by Chandler.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142895 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaCXX/warn-thread-safety-analysis.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/SemaCXX/warn-thread-safety-analysis.cpp b/test/SemaCXX/warn-thread-safety-analysis.cpp index 83e0ff08b9..b020e5712a 100644 --- a/test/SemaCXX/warn-thread-safety-analysis.cpp +++ b/test/SemaCXX/warn-thread-safety-analysis.cpp @@ -1524,10 +1524,6 @@ namespace template_member_test { } }; - struct MutexWrapper { - typedef Mutex Lock; - }; - - template struct IndirectLock<MutexWrapper>; // expected-note {{here}} + template struct IndirectLock<int>; // expected-note {{here}} } |