This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Some C++ questions


Here are a couple of C++ scoping questions I have.

1)

int main()
{
  if (int i = 10)
    i++; // should be okay
  i++; // shold be out of scope
}

SGI CC v7.0 doesn't like the declaration within the if statement.

2)
int main()
{
  for (int i = 0; i < 10; i++)
    cout << i;

  for (int i = 0; i < 10; i++) // should be fine
    cout << i;
}

Both SGI CC v7.0 and SunPro CC 4.2 barf horribly at this.

Who is right?


Many thanks

-- 
Ross Alexander                       r.alexander@auckland.ac.nz
Department of Statistics
University of Auckland
New Zealand


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]