Add missing initializers to avoid warnings from GCC 4.x

This commit is contained in:
Peter Dimov 2023-02-20 20:19:59 +02:00
parent 89c5a78129
commit 20d89b69db
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ int main()
std::string s = os.str();
X x2 = {};
X x2 = { 0, 0 };
{
std::istringstream is( s );

View File

@ -45,7 +45,7 @@ int main()
std::string s = os.str();
X x2 = {};
X x2 = { 0, 0 };
{
std::istringstream is( s );