forked from boostorg/core
Add missing initializers to avoid warnings from GCC 4.x
This commit is contained in:
@@ -34,7 +34,7 @@ int main()
|
||||
|
||||
std::string s = os.str();
|
||||
|
||||
X x2 = {};
|
||||
X x2 = { 0, 0 };
|
||||
|
||||
{
|
||||
std::istringstream is( s );
|
||||
|
@@ -45,7 +45,7 @@ int main()
|
||||
|
||||
std::string s = os.str();
|
||||
|
||||
X x2 = {};
|
||||
X x2 = { 0, 0 };
|
||||
|
||||
{
|
||||
std::istringstream is( s );
|
||||
|
Reference in New Issue
Block a user