public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/38172]  New: warn_unused_result does not work with structs not containing a copy constructor
@ 2008-11-18 22:14 pinskia at gcc dot gnu dot org
  2008-11-18 22:16 ` [Bug c++/38172] " pinskia at gcc dot gnu dot org
  2008-11-18 22:17 ` pinskia at gcc dot gnu dot org
  0 siblings, 2 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-11-18 22:14 UTC (permalink / raw)
  To: gcc-bugs

Take:
struct MyClass
{
};

typedef struct MyClass MyClass;

int Bar1( void ) __attribute__((warn_unused_result)) __attribute__((noinline));
MyClass Bar2( void ) __attribute__((warn_unused_result))
__attribute__((noinline));

int Bar1( void )
{
    return 0;
}

MyClass Bar2( void )
{
}

void Foo( void )
{
    Bar1(); // Warns
    Bar2(); // Does not warn
}
--- CUT ---
In Foo, Bar1 and Bar2 should cause a warning, only Bar1 causes a warning with
the C++ front-end.  While both cause a warning to show up with the C front-end.


-- 
           Summary: warn_unused_result does not work with structs not
                    containing a copy constructor
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org


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


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

end of thread, other threads:[~2021-12-10 22:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-38172-4@http.gcc.gnu.org/bugzilla/>
2010-11-24 19:17 ` [Bug c++/38172] warn_unused_result does not work with structs not containing a copy constructor pinskia at gcc dot gnu.org
2011-10-09 17:37 ` paolo.carlini at oracle dot com
2012-06-25 14:03 ` joerg.richter@pdv-fs.de
2014-01-17 12:43 ` karsten_burger at gmx dot de
2014-03-07 22:16 ` pinskia at gcc dot gnu.org
2014-03-07 22:17 ` pinskia at gcc dot gnu.org
2021-12-10 22:03 ` pinskia at gcc dot gnu.org
2008-11-18 22:14 [Bug c++/38172] New: " pinskia at gcc dot gnu dot org
2008-11-18 22:16 ` [Bug c++/38172] " pinskia at gcc dot gnu dot org
2008-11-18 22:17 ` pinskia 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).