[pure-lang-svn] SF.net SVN: pure-lang:[449] pure/trunk/lexer.ll
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-08-05 04:58:37
|
Revision: 449 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=449&view=rev Author: agraef Date: 2008-08-05 04:58:46 +0000 (Tue, 05 Aug 2008) Log Message: ----------- Cosmetic changes. Modified Paths: -------------- pure/trunk/lexer.ll Modified: pure/trunk/lexer.ll =================================================================== --- pure/trunk/lexer.ll 2008-08-05 04:37:56 UTC (rev 448) +++ pure/trunk/lexer.ll 2008-08-05 04:58:46 UTC (rev 449) @@ -942,8 +942,8 @@ if (h && h != f) h->print(os); f->print(os); for (size_t i = 0, n = fmap.m.size(); i < n; i++) { - for (EnvMap::const_iterator f = fmap.m[i]->begin(), - end = fmap.m[i]->end(); f != end; f++) - f->second.print(os); + for (EnvMap::const_iterator it = fmap.m[i]->begin(), + end = fmap.m[i]->end(); it != end; it++) + it->second.print(os); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |