From d9248a93ab3ef12d45587d627552e4a77327a01b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 25 Feb 2026 16:40:15 +0200 Subject: [PATCH] Placate GCC 4.x --- test/unwrap_and_construct.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unwrap_and_construct.cpp b/test/unwrap_and_construct.cpp index 43f3a55..dce131e 100644 --- a/test/unwrap_and_construct.cpp +++ b/test/unwrap_and_construct.cpp @@ -17,7 +17,7 @@ struct Y { int v; - explicit Y( X a1 = {}, X a2 = {}, X a3 = {}, X a4 = {} ): v( a1.v + a2.v + a3.v + a4.v ) + explicit Y( X a1 = {0}, X a2 = {0}, X a3 = {0}, X a4 = {0} ): v( a1.v + a2.v + a3.v + a4.v ) { } };