This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Some C++ questions
- To: egcs at cygnus dot com
- Subject: Some C++ questions
- From: Ross Alexander <r dot alexander at auckland dot ac dot nz>
- Date: Tue, 28 Oct 1997 14:35:42 +1300 (NDT)
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