]> granicus.if.org Git - clang/commitdiff
Tidy up testcase from r142890, spotted by Chandler.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 25 Oct 2011 01:05:41 +0000 (01:05 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 25 Oct 2011 01:05:41 +0000 (01:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142895 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/warn-thread-safety-analysis.cpp

index 83e0ff08b9ef94d8ca45d0128c67c8d1dd5bb229..b020e5712a0372b3879de7c55081ea3cd7357d35 100644 (file)
@@ -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}}
 
 }