Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warnings for uninitialized members disappear on the C++11

I compile this simple program:

#include <cstdio>
#include <iostream>

using namespace std;

struct Foo
{
    int a;
    int b;
};

struct Bar
{
    //Bar() = default;
    int d;
};

int main()
{
    Foo foo;
    Bar bar;

    printf("%d %d\n", foo.a, foo.b);

    return 0;
}

and I get those warnings:

$ g++ -std=c++11 -Wall -Wextra -Wpedantic foo.cpp -o foo
foo.cpp: In function ‘int main()’:
foo.cpp:21:9: warning: unused variable ‘bar’ [-Wunused-variable]
     Bar bar;
         ^
foo.cpp:23:11: warning: ‘foo.Foo::b’ is used uninitialized in this function [-Wuninitialized]
     printf("%d %d\n", foo.a, foo.b);
           ^
foo.cpp:23:11: warning: ‘foo.Foo::a’ is used uninitialized in this function [-Wuninitialized]

Of course, this is what we expect. But when I uncomment the Bar default ctor, there is a problem - all warnings disappear.

Why the Bar ctor disables warnings for Foo?

My GCC version is: g++ (Ubuntu 5.4.0-6ubuntu1~16.04.2) 5.4.0 20160609.

The problem does not occur on the C++03, only on the C++11 or newer.

like image 256
vmario Avatar asked Oct 26 '16 09:10

vmario


1 Answers

It's a compiler bug, which as Jarod pointed out, has been fixed.

like image 56
Montana Burr Avatar answered Nov 07 '22 23:11

Montana Burr