public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110075] New: Bogus -Wdangling-reference
@ 2023-06-01 10:26 pilarlatiesa at gmail dot com
  2023-06-09 18:53 ` [Bug c++/110075] " pilarlatiesa at gmail dot com
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: pilarlatiesa at gmail dot com @ 2023-06-01 10:26 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110075
           Summary: Bogus -Wdangling-reference
           Product: gcc
           Version: 13.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pilarlatiesa at gmail dot com
  Target Milestone: ---

$ cat test.cpp
#include <map>
#include <string>

class T
{
  static inline std::map<std::string, int> const m = {{"foo", 0}};

public:
  static int const &Get(std::string const &s) { return m.at(s); }
};

int main()
{
  [[maybe_unused]] int const &i = T::Get("foo");
}


$ ./gcc-13/bin/g++ -Wall test.cpp
test.cpp: In function ‘int main()’:
test.cpp:14:31: warning: possibly dangling reference to a temporary
[-Wdangling-reference]
   14 |   [[maybe_unused]] int const &i = T::Get("foo");
      |                               ^
test.cpp:14:41: note: the temporary was destroyed at the end of the full
expression ‘T::Get(std::__cxx11::basic_string<char>(((const char*)"foo"),
std::allocator<char>()))’
   14 |   [[maybe_unused]] int const &i = T::Get("foo");
      |                                   ~~~~~~^~~~~~~

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

end of thread, other threads:[~2024-03-01 21:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-01 10:26 [Bug c++/110075] New: Bogus -Wdangling-reference pilarlatiesa at gmail dot com
2023-06-09 18:53 ` [Bug c++/110075] " pilarlatiesa at gmail dot com
2023-10-28 21:26 ` roystgnr at gmail dot com
2024-01-19 17:25 ` mpolacek at gcc dot gnu.org
2024-01-24  7:50 ` ostash at ostash dot kiev.ua
2024-01-24 15:51 ` mpolacek at gcc dot gnu.org
2024-01-28 16:21 ` ostash at ostash dot kiev.ua
2024-01-30 16:44 ` mpolacek at gcc dot gnu.org
2024-03-01 21:18 ` 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).