Changeset 182 in dev for trunk/abdev/BasicCompiler_Common/VarList.cpp
- Timestamp:
- Jun 24, 2007, 6:49:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/VarList.cpp
r140 r182 1 #include <jenga/include/smoothie/Smoothie.h> 2 1 3 #include "../BasicCompiler_Common/common.h" 2 4 … … 266 268 extern int MemPos_RWSection; 267 269 268 foreach( Variable *pVar, globalVars ){270 BOOST_FOREACH( Variable *pVar, globalVars ){ 269 271 270 272 //スコープ外の場合は無視 … … 362 364 if(!pUserProc) return; 363 365 364 foreach( Variable *pVar, pUserProc->localVars ){366 BOOST_FOREACH( Variable *pVar, pUserProc->localVars ){ 365 367 366 368 //スコープ外の場合は無視 … … 725 727 726 728 if(pUserProc){ 727 pobj_CompilingClass = pUserProc->GetParentClassPtr();729 Smoothie::Temp::pCompilingClass = pUserProc->GetParentClassPtr(); 728 730 UserProc::CompileStartForUserProc( pUserProc ); 729 731 }
Note:
See TracChangeset
for help on using the changeset viewer.