public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/105626] New: -Wformat should accept u8"" strings
@ 2022-05-17 12:13 drepper.fsp+rhbz at gmail dot com
  2022-05-17 13:10 ` [Bug c++/105626] " mpolacek at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: drepper.fsp+rhbz at gmail dot com @ 2022-05-17 12:13 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 105626
           Summary: -Wformat should accept u8"" strings
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: drepper.fsp+rhbz at gmail dot com
  Target Milestone: ---

The discussion about this topic on gcc@
(https://gcc.gnu.org/pipermail/gcc/2022-May/238673.html) ended with the
conclusion that gcc should not disregard the cast in code like this:

#include <stdio.h>

int main()
{
  printf((const char*) u8"test %d\n", 1);
  return 0;
}

With -Wformat this code produces with gcc 12:

t.cc: In function ‘int main()’:
t.cc:5:24: warning: format string is not an array of type ‘char’ [-Wformat=]
    5 |   printf((const char*) u8"test %d\n", 1);
      |                        ^~~~~~~~~~~~~

Since

a) there are no I/O functions for u8 strings in C++20
b) using u8 strings is necessary in reliable code
c) it is safe to perform the analysis -Wformat does on u8 strings

I suggest that u8 strings are allowed when testing for -Wformat.

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

end of thread, other threads:[~2022-07-06 12:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17 12:13 [Bug c++/105626] New: -Wformat should accept u8"" strings drepper.fsp+rhbz at gmail dot com
2022-05-17 13:10 ` [Bug c++/105626] " mpolacek at gcc dot gnu.org
2022-07-04 20:38 ` drepper.fsp+rhbz at gmail dot com
2022-07-05 16:23 ` mpolacek at gcc dot gnu.org
2022-07-05 21:35 ` cvs-commit at gcc dot gnu.org
2022-07-05 21:39 ` mpolacek at gcc dot gnu.org
2022-07-06  4:42 ` drepper.fsp+rhbz at gmail dot com
2022-07-06 12:53 ` cvs-commit 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).