mirror of
https://github.com/boostorg/core.git
synced 2025-07-29 20:37:22 +02:00
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