From 703aa0c3b39234750e223dc53e5ec5527c08de05 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 24 Mar 2015 19:01:08 +0000 Subject: [PATCH] Fix clang compilation failure. --- test/aligned_storage_a2_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/aligned_storage_a2_test.cpp b/test/aligned_storage_a2_test.cpp index fa7360d..f339359 100644 --- a/test/aligned_storage_a2_test.cpp +++ b/test/aligned_storage_a2_test.cpp @@ -59,7 +59,7 @@ void do_check(const T&) #ifndef TEST_STD // Non-Tr1 behaviour: - typedef typename tt::aligned_storage::type t3; + typedef typename tt::aligned_storage::type t3; t3 as3 = { 0, }; must_be_pod pod3; no_unused_warning(as3);