public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110164] New: Improve diagnostic for incomplete standard library types due to missing include
@ 2023-06-07 21:49 rs2740 at gmail dot com
  2023-06-07 21:56 ` [Bug c++/110164] " pinskia at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: rs2740 at gmail dot com @ 2023-06-07 21:49 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110164
           Summary: Improve diagnostic for incomplete standard library
                    types due to missing include
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rs2740 at gmail dot com
  Target Milestone: ---

If I forget to include a header before using a sufficiently well-known standard
library type, GCC helpfully reminds me of the header:

$ echo 'std::array<int, 10> x;' | g++ -x c++ -

<stdin>:1:6: error: ‘array’ in namespace ‘std’ does not name a template type
<stdin>:1:1: note: ‘std::array’ is defined in header ‘<array>’; did you forget
to ‘#include <array>’?

But if I happen to have a different standard library header included that
happens to bring in a forward declaration of the type, the error message is
less helpful:

$ echo -e '#include <map>\nstd::array<int, 10> x;' | g++ -x c++ -

<stdin>:2:21: error: aggregate ‘std::array<int, 10> x’ has incomplete type and
cannot be defined

It would be nice if the latter case also has a hint about the potential missing
include.

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

end of thread, other threads:[~2023-06-23 22:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-07 21:49 [Bug c++/110164] New: Improve diagnostic for incomplete standard library types due to missing include rs2740 at gmail dot com
2023-06-07 21:56 ` [Bug c++/110164] " pinskia at gcc dot gnu.org
2023-06-13 22:51 ` dmalcolm at gcc dot gnu.org
2023-06-21 20:41 ` dmalcolm at gcc dot gnu.org
2023-06-21 20:50 ` pinskia at gcc dot gnu.org
2023-06-23 21:57 ` cvs-commit at gcc dot gnu.org
2023-06-23 22:03 ` dmalcolm 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).