From d832387fdbf39ba31afe4d1a00dc233b74c78c62 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sun, 13 May 2018 18:59:43 +0900 Subject: [PATCH] Fixed misused parenthesized initializer --- test/support/unused.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/support/unused.cpp b/test/support/unused.cpp index 28d2ffda..e609617f 100644 --- a/test/support/unused.cpp +++ b/test/support/unused.cpp @@ -19,7 +19,7 @@ void unused_construction() { boost::fusion::unused_type dephault; - boost::fusion::unused_type BOOST_ATTRIBUTE_UNUSED parenthesis(); + boost::fusion::unused_type BOOST_ATTRIBUTE_UNUSED parenthesis = boost::fusion::unused_type(); #ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX boost::fusion::unused_type BOOST_ATTRIBUTE_UNUSED brace{}; boost::fusion::unused_type BOOST_ATTRIBUTE_UNUSED list_copy = {};