public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96400] New: False positive on Wunused-but-set-variable for static constexpr var used in lambda
@ 2020-07-31  9:56 gccbugbjorn at fahller dot se
  2021-07-27  4:49 ` [Bug c++/96400] " pinskia at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: gccbugbjorn at fahller dot se @ 2020-07-31  9:56 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96400
           Summary: False positive on Wunused-but-set-variable for static
                    constexpr var used in lambda
           Product: gcc
           Version: 10.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gccbugbjorn at fahller dot se
  Target Milestone: ---

Similar to Bug 96311, but not quite the same.

This code is flags "is_zero" as being unused but set:

template <typename Pred, typename Val>
bool test(Pred p, Val v)
{
    return p(v);
}

bool func(int* p)
{
    static constexpr auto is_zero = [](auto v) { return v == 0;};
    return test([](auto v){return is_zero(*v);}, p);
}

Output:
<source>: In function 'bool func(int*)':

<source>:9:27: warning: variable 'is_zero' set but not used
[-Wunused-but-set-variable]

    9 |     static constexpr auto is_zero = [](auto v) { return v == 0;};

      |                           ^~~~~~~


"is_zero" can correctly be used in the lambda without being captured, since
it's static. The warning only appears when using the extra indirection
"test()". Calling the anonymous lambda directly, without the indirection
"test()", does not display the warning.

Possibly "constexpr" is a red herring above.

Godbolt link:
https://godbolt.org/z/x4zb3s

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

end of thread, other threads:[~2022-09-23 16:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-31  9:56 [Bug c++/96400] New: False positive on Wunused-but-set-variable for static constexpr var used in lambda gccbugbjorn at fahller dot se
2021-07-27  4:49 ` [Bug c++/96400] " pinskia at gcc dot gnu.org
2022-09-23 16:16 ` pinskia at gcc dot gnu.org
2022-09-23 16:27 ` 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).