public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* differences w/ enum in for loop between 3.3.2 and 3.4.3
@ 2005-07-06 20:33 Steve deRosier
  2005-07-06 20:40 ` corey taylor
  0 siblings, 1 reply; 2+ messages in thread
From: Steve deRosier @ 2005-07-06 20:33 UTC (permalink / raw)
  To: gcc-help

Perhaps this is now against standard ISO C++ now, but in g++ 3.3.2, the following code compiled (snipped and adjusted of course):

class whatever 
{
  private:
    typedef enum { BUFF_LEFT=0, BUFF_RIGHT=1, BUFF_SIZE=2 } eBuffSide;
}

void whatever::function( void )
{
  for( eBuffSide i = BUFF_LEFT; i <= BUFF_RIGHT; (int(i))++ )
  {
    function2( i )
    ...
  }
}

Now with 3.4.3 I get an error:
"error: ISO C++ forbids cast to non-reference type used as lvalue"

What gives?

Removing the cast gives me an error about not being able to find a postfix operator++.  To make this compile under 3.4.3 I have to code as:

  for( int i = BUFF_LEFT; i <= BUFF_RIGHT; i++ )
  {
    function2( eBuffSide(i) )
    ...
  }

Is there a better way to do this?  (And no, I don't want to make eBuffSide into a class of its own w/ proper operator overloading, it is just intended to be a class-scope named constant.)

- Steve

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

* Re: differences w/ enum in for loop between 3.3.2 and 3.4.3
  2005-07-06 20:33 differences w/ enum in for loop between 3.3.2 and 3.4.3 Steve deRosier
@ 2005-07-06 20:40 ` corey taylor
  0 siblings, 0 replies; 2+ messages in thread
From: corey taylor @ 2005-07-06 20:40 UTC (permalink / raw)
  To: Steve deRosier; +Cc: gcc-help

Steve,

  You are correct about the C++ conflict.

  Look at the 4th bullet in the C/Objective-C/C++ section:

  http://gcc.gnu.org/gcc-3.4/changes.html

corey

On 7/6/05, Steve deRosier <derosier@pianodisc.com> wrote:
> Perhaps this is now against standard ISO C++ now, but in g++ 3.3.2, the following code compiled (snipped and adjusted of course):
> 
> class whatever
> {
>   private:
>     typedef enum { BUFF_LEFT=0, BUFF_RIGHT=1, BUFF_SIZE=2 } eBuffSide;
> }
> 
> void whatever::function( void )
> {
>   for( eBuffSide i = BUFF_LEFT; i <= BUFF_RIGHT; (int(i))++ )
>   {
>     function2( i )
>     ...
>   }
> }
> 
> Now with 3.4.3 I get an error:
> "error: ISO C++ forbids cast to non-reference type used as lvalue"
> 
> What gives?
> 
> Removing the cast gives me an error about not being able to find a postfix operator++.  To make this compile under 3.4.3 I have to code as:
> 
>   for( int i = BUFF_LEFT; i <= BUFF_RIGHT; i++ )
>   {
>     function2( eBuffSide(i) )
>     ...
>   }
> 
> Is there a better way to do this?  (And no, I don't want to make eBuffSide into a class of its own w/ proper operator overloading, it is just intended to be a class-scope named constant.)
> 
> - Steve
>

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

end of thread, other threads:[~2005-07-06 20:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-06 20:33 differences w/ enum in for loop between 3.3.2 and 3.4.3 Steve deRosier
2005-07-06 20:40 ` corey taylor

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).