This is the mail archive of the
gcc-prs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/7311: inline functions do not give control reaches end of non-void function in g++
- From: Andrew Pinski <pinskia at physics dot uc dot edu>
- To: nobody at gcc dot gnu dot org
- Cc: gcc-prs at gcc dot gnu dot org,
- Date: 15 Jul 2002 13:26:01 -0000
- Subject: Re: c++/7311: inline functions do not give control reaches end of non-void function in g++
- Reply-to: Andrew Pinski <pinskia at physics dot uc dot edu>
The following reply was made to PR c++/7311; it has been noted by GNATS.
From: Andrew Pinski <pinskia@physics.uc.edu>
To: Bas Wijnen <shevek@fmf.nl>
Cc: gcc-gnats@gcc.gnu.org, <debian-gcc@lists.debian.org>
Subject: Re: c++/7311: inline functions do not give control reaches end of non-void function in g++
Date: Mon, 15 Jul 2002 09:19:50 -0400
This has been fixed in gcc version 3.3 20020713 (experimental) at least.
Thanks,
Andrew Pinski
On Monday, July 15, 2002, at 08:30 , Bas Wijnen wrote:
> class foo
> {
> public:
> int bar ()
> {
> }
> };
>
> int main ()
> {
> foo f;
> f.bar ();
> return 0;
> }