public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/39875]  New: [4.5 regression] Wrong "value computed is not used" warning
@ 2009-04-23 19:59 bangerth at gmail dot com
  2009-04-24  9:25 ` [Bug c++/39875] " rguenth at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: bangerth at gmail dot com @ 2009-04-23 19:59 UTC (permalink / raw)
  To: gcc-bugs

I think this is from after 4.4 branched:
----------------------
template <typename TT> struct InputIterator
{
    InputIterator ()
      {
        TT i;
        (void)*i;           // require dereference operator
      }
};

InputIterator<int *> i;
---------------------

> c++ -c deal.II/source/dofs/dof_renumbering.cc  -W -Wall
deal.II/source/dofs/dof_renumbering.cc: In constructor
'InputIterator<TT>::InputIterator() [with TT = int*]':
deal.II/source/dofs/dof_renumbering.cc:10:   instantiated from here
deal.II/source/dofs/dof_renumbering.cc:6: warning: value computed is not used

That's obviously bogus, the compiler warns about a statement that is
explicitly cast to 'void' so there is no computed value any more.

The code is culled from boost's concepts checks, so this is going to hit
quite a number of people.

W.


-- 
           Summary: [4.5 regression] Wrong "value computed is not used"
                    warning
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: bangerth at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39875


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

end of thread, other threads:[~2009-04-27  5:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-23 19:59 [Bug c++/39875] New: [4.5 regression] Wrong "value computed is not used" warning bangerth at gmail dot com
2009-04-24  9:25 ` [Bug c++/39875] " rguenth at gcc dot gnu dot org
2009-04-26 17:11 ` bangerth at gmail dot com
2009-04-26 19:23 ` jakub at gcc dot gnu dot org
2009-04-26 19:36 ` jakub at gcc dot gnu dot org
2009-04-27  5:54 ` jakub at gcc dot gnu dot org
2009-04-27  5:56 ` jakub at gcc dot gnu dot 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).