From 6a68a9117b4831c7aaa1248bd956e963e7597802 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 14 Dec 2012 15:37:35 +0000 Subject: [PATCH] [Sanitizer] remove extra typename llvm-svn: 170208 --- .../lib/sanitizer_common/tests/sanitizer_allocator_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc index 6e66adf4a1e3..0ee8c85998c7 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_allocator_test.cc @@ -444,7 +444,7 @@ void *AllocatorLeakTestWorker(void *arg) { } TEST(SanitizerCommon, AllocatorLeakTest) { - typedef typename AllocatorCache::Allocator Allocator; + typedef AllocatorCache::Allocator Allocator; Allocator a; a.Init(); uptr total_used_memory = 0;