From be98ffef7666c872afa8a2bae113ba8257f2ab02 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sun, 1 Mar 2020 03:19:22 +0300 Subject: [PATCH] Removed unnecessary typename to fix MSVC build. --- include/boost/atomic/detail/atomic_flag.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/atomic/detail/atomic_flag.hpp b/include/boost/atomic/detail/atomic_flag.hpp index b09b591..abc8161 100644 --- a/include/boost/atomic/detail/atomic_flag.hpp +++ b/include/boost/atomic/detail/atomic_flag.hpp @@ -52,7 +52,7 @@ struct atomic_flag union { storage_type m_storage; - typename boost::type_with_alignment< operations::storage_alignment >::type m_aligner; + boost::type_with_alignment< operations::storage_alignment >::type m_aligner; }; #endif