public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110745] New: Improve printing of base classes
@ 2023-07-19 20:09 mpolacek at gcc dot gnu.org
  2023-07-19 20:10 ` [Bug c++/110745] " mpolacek at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2023-07-19 20:09 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110745

            Bug ID: 110745
           Summary: Improve printing of base classes
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mpolacek at gcc dot gnu.org
  Target Milestone: ---

Prompted by <https://gcc.gnu.org/pipermail/gcc-patches/2023-July/624964.html>:

struct B { int i; };
struct D : B {
    int x;
    int y;
};

int
main ()
{
  D d = {.x=1, .y=2};
  (void)d;
}

$ ./cc1plus -quiet q.C -Wmissing-field-initializers
q.C: In function ‘int main()’:
q.C:10:20: warning: missing initializer for member 'D::<anonymous>'
[-Wmissing-field-initializers]
   10 |   D d = {.x=1, .y=2};
      |                    ^

We should be able to say 'D::B' instead.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-07-19 22:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-19 20:09 [Bug c++/110745] New: Improve printing of base classes mpolacek at gcc dot gnu.org
2023-07-19 20:10 ` [Bug c++/110745] " mpolacek at gcc dot gnu.org
2023-07-19 22:22 ` cvs-commit at gcc dot gnu.org
2023-07-19 22:22 ` mpolacek at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).