public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "gcc-bugs at marehr dot dialup.fu-berlin.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/99318] New: [10/11 Regression] -Wdeprecated-declarations where non-should be?
Date: Mon, 01 Mar 2021 14:48:57 +0000	[thread overview]
Message-ID: <bug-99318-4@http.gcc.gnu.org/bugzilla/> (raw)

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!

             reply	other threads:[~2021-03-01 14:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-01 14:48 gcc-bugs at marehr dot dialup.fu-berlin.de [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-99318-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).