public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/99318] New: [10/11 Regression] -Wdeprecated-declarations where non-should be?
@ 2021-03-01 14:48 gcc-bugs at marehr dot dialup.fu-berlin.de
  2021-03-02  7:32 ` [Bug c++/99318] " rguenth at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gcc-bugs at marehr dot dialup.fu-berlin.de @ 2021-03-01 14:48 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 99318
           Summary: [10/11 Regression] -Wdeprecated-declarations where
                    non-should be?
           Product: gcc
           Version: 10.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gcc-bugs at marehr dot dialup.fu-berlin.de
  Target Milestone: ---

Hello gcc-team,

since gcc 10 the following code throws a deprecation warning, even though it
doesn't use any deprecated code.

```c++
template <typename derived_type>
class alphabet_base
{
    [[deprecated("message")]] unsigned char_to_rank_table(char const chr)
    {
        using index_t = unsigned;
        return derived_type::char_to_rank[static_cast<index_t>(chr)];
    }
};

```

gives the following warning:

```
<source>: In member function 'unsigned int
alphabet_base<derived_type>::char_to_rank_table(char)':
<source>:7:55: warning: 'unsigned int
alphabet_base<derived_type>::char_to_rank_table(char)' is deprecated: message
[-Wdeprecated-declarations]
    7 |         return derived_type::char_to_rank[static_cast<index_t>(chr)];
      |                                                       ^~~~~~~
<source>:4:40: note: declared here
    4 |     [[deprecated("message")]] unsigned char_to_rank_table(char const
chr)
      |                                        ^~~~~~~~~~~~~~~~~~
Compiler returned: 0
```

See https://godbolt.org/z/4cWzMr

Thank you!

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

end of thread, other threads:[~2021-08-11 20:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-01 14:48 [Bug c++/99318] New: [10/11 Regression] -Wdeprecated-declarations where non-should be? gcc-bugs at marehr dot dialup.fu-berlin.de
2021-03-02  7:32 ` [Bug c++/99318] " rguenth at gcc dot gnu.org
2021-03-09 13:49 ` jakub at gcc dot gnu.org
2021-03-09 14:21 ` mpolacek at gcc dot gnu.org
2021-03-23 14:56 ` cvs-commit at gcc dot gnu.org
2021-03-23 14:58 ` [Bug c++/99318] [10 " mpolacek at gcc dot gnu.org
2021-03-29 12:38 ` cvs-commit at gcc dot gnu.org
2021-03-29 12:38 ` rguenth at gcc dot gnu.org
2021-08-11 20:57 ` pinskia 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).